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