Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
74 lines
1.3 KiB
Nix
74 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
curl,
|
|
libargon2,
|
|
libevent,
|
|
libsearpc,
|
|
libuuid,
|
|
pkg-config,
|
|
python3,
|
|
sqlite,
|
|
vala,
|
|
libwebsockets,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "seafile-shared";
|
|
version = "9.0.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "haiwen";
|
|
repo = "seafile";
|
|
rev = "v${version}";
|
|
hash = "sha256-mWIOk8O3vlg7Sm/5ZQUB5nOgi8/pEczCGQ94p0km/GI=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace scripts/breakpad.py --replace-fail "from __future__ import print_function" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
libwebsockets
|
|
autoreconfHook
|
|
vala
|
|
pkg-config
|
|
python3
|
|
python3.pkgs.wrapPython
|
|
];
|
|
|
|
buildInputs = [
|
|
libargon2
|
|
libuuid
|
|
sqlite
|
|
libsearpc
|
|
libevent
|
|
curl
|
|
];
|
|
|
|
configureFlags = [
|
|
"--disable-server"
|
|
"--with-python3"
|
|
];
|
|
|
|
pythonPath = with python3.pkgs; [
|
|
pysearpc
|
|
];
|
|
|
|
postFixup = ''
|
|
wrapPythonPrograms
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/haiwen/seafile";
|
|
description = "Shared components of Seafile: seafile-daemon, libseafile, libseafile python bindings, manuals, and icons";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [
|
|
schmittlauch
|
|
];
|
|
};
|
|
}
|