2018-06-26 23:45:54 +02:00
|
|
|
{stdenv, fetchFromGitHub, which, autoreconfHook, pkgconfig, curl, vala, python, intltool, fuse, ccnet}:
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2017-12-19 08:09:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-01-27 05:48:36 +01:00
|
|
|
version = "6.2.11";
|
2014-02-04 20:02:46 +01:00
|
|
|
name = "seafile-shared-${version}";
|
|
|
|
|
2018-06-26 23:45:54 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "haiwen";
|
|
|
|
repo = "seafile";
|
|
|
|
rev = "v${version}";
|
2019-01-27 05:48:36 +01:00
|
|
|
sha256 = "16d4m5n5zhip13l6pv951lm081pnwxpiqcm7j4gxqm1ian48m787";
|
2014-02-04 20:02:46 +01:00
|
|
|
};
|
|
|
|
|
2017-12-19 08:09:01 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig which autoreconfHook vala intltool ];
|
|
|
|
buildInputs = [ python fuse ];
|
2015-01-09 13:37:44 +01:00
|
|
|
propagatedBuildInputs = [ ccnet curl ];
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2017-12-19 08:09:01 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-server"
|
|
|
|
"--disable-console"
|
|
|
|
];
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2017-12-19 08:09:01 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/haiwen/seafile;
|
2014-02-04 20:02:46 +01:00
|
|
|
description = "Shared components of Seafile: seafile-daemon, libseafile, libseafile python bindings, manuals, and icons";
|
2017-12-19 08:09:01 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2018-03-11 00:46:41 +01:00
|
|
|
maintainers = [ ];
|
2014-02-04 20:02:46 +01:00
|
|
|
};
|
|
|
|
}
|