mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{stdenv, fetchurl, which, automake, autoconf, pkgconfig, curl, libtool, vala_0_23, python, intltool, fuse, ccnet}:
|
|
|
|
stdenv.mkDerivation rec
|
|
{
|
|
version = "5.0.7";
|
|
name = "seafile-shared-${version}";
|
|
|
|
src = fetchurl
|
|
{
|
|
url = "https://github.com/haiwen/seafile/archive/v${version}.tar.gz";
|
|
sha256 = "ec166c86a41e7ab3b1ae97a56326ab4a2b1ec38686486b956c3d153b8023c670";
|
|
};
|
|
|
|
buildInputs = [ which automake autoconf pkgconfig libtool vala_0_23 python intltool fuse ];
|
|
propagatedBuildInputs = [ ccnet curl ];
|
|
|
|
preConfigure = ''
|
|
sed -ie 's|/bin/bash|/bin/sh|g' ./autogen.sh
|
|
./autogen.sh
|
|
'';
|
|
|
|
configureFlags = "--disable-server --disable-console";
|
|
|
|
buildPhase = "make -j1";
|
|
|
|
postInstall = ''
|
|
# Remove seafile binary
|
|
rm -rf "$out/bin/seafile"
|
|
# Remove cli client binary
|
|
rm -rf "$out/bin/seaf-cli"
|
|
'';
|
|
|
|
meta =
|
|
{
|
|
homepage = "https://github.com/haiwen/seafile";
|
|
description = "Shared components of Seafile: seafile-daemon, libseafile, libseafile python bindings, manuals, and icons";
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.calrama ];
|
|
};
|
|
}
|