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

26 lines
826 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{lib, stdenv, fetchurl, which, autoreconfHook, pkg-config, vala, python, libsearpc, libzdb, libuuid, libevent, sqlite, openssl}:
2017-12-19 04:59:44 +00:00
stdenv.mkDerivation rec {
version = "6.1.8";
seafileVersion = "6.1.8";
pname = "ccnet";
2017-12-19 04:59:44 +00:00
src = fetchurl {
url = "https://github.com/haiwen/ccnet/archive/v${version}.tar.gz";
sha256 = "0qlpnrz30ldrqnvbj59d54qdghxpxc5lsq6kf3dw2b93jnzkcmmm";
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config which autoreconfHook vala python ];
propagatedBuildInputs = [ libsearpc libzdb libuuid libevent sqlite openssl ];
2017-12-19 04:59:44 +00:00
configureFlags = [ "--enable-server" ];
meta = with lib; {
homepage = "https://github.com/haiwen/ccnet";
2014-11-11 13:20:43 +00:00
description = "A framework for writing networked applications in C";
2017-12-19 04:59:44 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
2018-03-10 23:46:41 +00:00
maintainers = [ ];
};
}