2017-12-19 05:59:44 +01:00
|
|
|
{stdenv, fetchurl, which, autoreconfHook, pkgconfig, vala, python, libsearpc, libzdb, libuuid, libevent, sqlite, openssl}:
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2017-12-19 05:59:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-08-06 19:09:33 +02:00
|
|
|
version = "6.1.0";
|
|
|
|
seafileVersion = "6.1.0";
|
2014-02-04 20:02:46 +01:00
|
|
|
name = "ccnet-${version}";
|
|
|
|
|
2017-12-19 05:59:44 +01:00
|
|
|
src = fetchurl {
|
2016-04-23 02:52:42 +02:00
|
|
|
url = "https://github.com/haiwen/ccnet/archive/v${version}.tar.gz";
|
2017-08-06 19:09:33 +02:00
|
|
|
sha256 = "0q4a102xlcsxlr53h4jr4w8qzkbzvm2f3nk9fsha48h6l2hw34bb";
|
2014-02-04 20:02:46 +01:00
|
|
|
};
|
|
|
|
|
2017-12-19 05:59:44 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig which autoreconfHook vala python ];
|
2014-02-04 20:02:46 +01:00
|
|
|
propagatedBuildInputs = [ libsearpc libzdb libuuid libevent sqlite openssl ];
|
|
|
|
|
2017-12-19 05:59:44 +01:00
|
|
|
configureFlags = [ "--enable-server" ];
|
2014-02-04 20:02:46 +01:00
|
|
|
|
2017-12-19 05:59:44 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-11-11 14:20:43 +01:00
|
|
|
homepage = https://github.com/haiwen/ccnet;
|
|
|
|
description = "A framework for writing networked applications in C";
|
2017-12-19 05:59:44 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.calrama ];
|
2014-02-04 20:02:46 +01:00
|
|
|
};
|
|
|
|
}
|