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