52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
|
{stdenv, fetchFromGitHub, which, autoreconfHook, pkgconfig, vala, python2, curl, libevent, glib, libsearpc, sqlite, intltool, fuse, ccnet, libuuid }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "seafile-shared";
|
||
|
version = "7.0.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "haiwen";
|
||
|
repo = "seafile";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0pc6xbwxljpj7h37za63kspdi90ap58x6x5b7hsmlhahblvlw0b8";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
autoreconfHook
|
||
|
vala
|
||
|
pkgconfig
|
||
|
python2
|
||
|
python2.pkgs.wrapPython
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
libuuid
|
||
|
sqlite
|
||
|
libsearpc
|
||
|
libevent
|
||
|
curl
|
||
|
];
|
||
|
|
||
|
configureFlags = [
|
||
|
"--disable-server"
|
||
|
"--disable-console"
|
||
|
];
|
||
|
|
||
|
pythonPath = with python2.pkgs; [
|
||
|
future
|
||
|
libsearpc
|
||
|
];
|
||
|
|
||
|
postFixup = ''
|
||
|
wrapPythonPrograms
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://github.com/haiwen/seafile";
|
||
|
description = "Shared components of Seafile: seafile-daemon, libseafile, libseafile python bindings, manuals, and icons";
|
||
|
license = licenses.gpl3;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = [ ];
|
||
|
};
|
||
|
}
|