37c1c427f5
`seafile-client` does not build successfully because of a hash mismatch in `seafile-shared`. The old hash appears to point to commit `b7f2be78c1d979ff1242c3b65b41228e31427843` rather than `ea8f5e2b45612d77fee9934f942d1d7d55560dad`, which is the commit that the `v6.2.10` tag currently references.
30 lines
880 B
Nix
30 lines
880 B
Nix
{stdenv, fetchFromGitHub, which, autoreconfHook, pkgconfig, curl, vala, python, intltool, fuse, ccnet}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "6.2.10";
|
|
name = "seafile-shared-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "haiwen";
|
|
repo = "seafile";
|
|
rev = "v${version}";
|
|
sha256 = "1bl22dmbl9gbavwxqbxfzq838k7aiv8ihgyr8famj9954xy7b7qn";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig which autoreconfHook vala intltool ];
|
|
buildInputs = [ python fuse ];
|
|
propagatedBuildInputs = [ ccnet curl ];
|
|
|
|
configureFlags = [
|
|
"--disable-server"
|
|
"--disable-console"
|
|
];
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|