nixpkgs/pkgs/misc/seafile-shared/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, autoreconfHook
, curl
, libevent
, libsearpc
, libuuid
, pkg-config
, python3
, sqlite
, vala
}:
stdenv.mkDerivation rec {
pname = "seafile-shared";
2021-06-30 14:08:51 +00:00
version = "8.0.3";
2018-06-26 21:45:54 +00:00
src = fetchFromGitHub {
owner = "haiwen";
repo = "seafile";
rev = "0fdc14d5175979919b7c741f6bb97bfaaacbbfbe";
sha256 = "1cr1hvpp96s5arnzh1r5sazapcghhvbazbf7zym37yp3fy3lpya1";
};
nativeBuildInputs = [
autoreconfHook
vala
pkg-config
python3
python3.pkgs.wrapPython
];
buildInputs = [
libuuid
sqlite
libsearpc
libevent
curl
];
configureFlags = [
"--disable-server"
"--with-python3"
];
pythonPath = with python3.pkgs; [
2021-04-20 18:01:54 +00:00
future
pysearpc
];
postFixup = ''
wrapPythonPrograms
'';
meta = with lib; {
homepage = "https://github.com/haiwen/seafile";
description = "Shared components of Seafile: seafile-daemon, libseafile, libseafile python bindings, manuals, and icons";
2021-04-20 18:01:54 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
2021-04-20 18:01:54 +00:00
maintainers = with maintainers; [ greizgh schmittlauch ];
};
}