mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
83274eccf0
Also updated dependencies: ccnet: 1.4.2 -> 5.0.7 libsearpc: 1.2.2 -> 3.0.7
36 lines
1018 B
Nix
36 lines
1018 B
Nix
{stdenv, fetchurl, which, automake, autoconf, pkgconfig, libtool, vala, python, libsearpc, libzdb, libuuid, libevent, sqlite, openssl}:
|
|
|
|
stdenv.mkDerivation rec
|
|
{
|
|
version = "5.0.7";
|
|
seafileVersion = "5.0.7";
|
|
name = "ccnet-${version}";
|
|
|
|
src = fetchurl
|
|
{
|
|
url = "https://github.com/haiwen/ccnet/archive/v${version}.tar.gz";
|
|
sha256 = "1e1c670a85619b174328a15925a050c7a8b323fecd13434992332f5c15e05de1";
|
|
};
|
|
|
|
buildInputs = [ which automake autoconf pkgconfig libtool vala python ];
|
|
propagatedBuildInputs = [ libsearpc libzdb libuuid libevent sqlite openssl ];
|
|
|
|
preConfigure = ''
|
|
sed -ie 's|/bin/bash|/bin/sh|g' ./autogen.sh
|
|
./autogen.sh
|
|
'';
|
|
|
|
configureFlags = "--enable-server";
|
|
|
|
buildPhase = "make -j1";
|
|
|
|
meta =
|
|
{
|
|
homepage = https://github.com/haiwen/ccnet;
|
|
description = "A framework for writing networked applications in C";
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.calrama ];
|
|
};
|
|
}
|