seafile-client: 5.0.7 -> 6.1.0

bump to qt5
This commit is contained in:
Simon Lackerbauer
2017-08-09 19:53:05 +02:00
committed by Robin Gloster
parent c839b6ce0a
commit 30d76b8ccd
5 changed files with 24 additions and 35 deletions
+3 -3
View File
@@ -2,20 +2,20 @@
stdenv.mkDerivation rec
{
version = "5.0.7";
version = "6.1.0";
name = "seafile-shared-${version}";
src = fetchurl
{
url = "https://github.com/haiwen/seafile/archive/v${version}.tar.gz";
sha256 = "ec166c86a41e7ab3b1ae97a56326ab4a2b1ec38686486b956c3d153b8023c670";
sha256 = "03zvxk25311xgn383k54qvvpr8xbnl1vxd99fg4ca9yg5rmir1q6";
};
buildInputs = [ which automake autoconf pkgconfig libtool vala_0_23 python intltool fuse ];
propagatedBuildInputs = [ ccnet curl ];
preConfigure = ''
sed -ie 's|/bin/bash|/bin/sh|g' ./autogen.sh
sed -ie 's|/bin/bash|${stdenv.shell}|g' ./autogen.sh
./autogen.sh
'';