nixpkgs/pkgs/tools/networking/ccnet/default.nix

26 lines
834 B
Nix
Raw Normal View History

2017-12-19 05:59:44 +01:00
{stdenv, fetchurl, which, autoreconfHook, pkgconfig, vala, python, libsearpc, libzdb, libuuid, libevent, sqlite, openssl}:
2017-12-19 05:59:44 +01:00
stdenv.mkDerivation rec {
version = "6.1.7";
seafileVersion = "6.1.7";
name = "ccnet-${version}";
2017-12-19 05:59:44 +01:00
src = fetchurl {
url = "https://github.com/haiwen/ccnet/archive/v${version}.tar.gz";
sha256 = "1kkzdxa9r7sw1niwniznfkvilgvb7q039wq07cfk73qs3231bj7r";
};
2017-12-19 05:59:44 +01:00
nativeBuildInputs = [ pkgconfig which autoreconfHook vala python ];
propagatedBuildInputs = [ libsearpc libzdb libuuid libevent sqlite openssl ];
2017-12-19 05:59:44 +01:00
configureFlags = [ "--enable-server" ];
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;
2018-03-11 00:46:41 +01:00
maintainers = [ ];
};
}