nixpkgs/pkgs/tools/networking/ccnet/default.nix
R. RyanTM a418676508 ccnet: 6.1.0 -> 6.1.7 (#38593)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/ccnet/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/pjhaffj25vr662q3xvxxqjdddny0r0rn-ccnet-6.1.7/bin/ccnet -h’ got 0 exit code
- ran ‘/nix/store/pjhaffj25vr662q3xvxxqjdddny0r0rn-ccnet-6.1.7/bin/ccnet --help’ got 0 exit code
- found 6.1.7 with grep in /nix/store/pjhaffj25vr662q3xvxxqjdddny0r0rn-ccnet-6.1.7
- directory tree listing: https://gist.github.com/b89fd3d2ea82f0d5a57dcfb186e1904d
2018-04-08 09:11:01 +02:00

26 lines
834 B
Nix

{stdenv, fetchurl, which, autoreconfHook, pkgconfig, vala, python, libsearpc, libzdb, libuuid, libevent, sqlite, openssl}:
stdenv.mkDerivation rec {
version = "6.1.7";
seafileVersion = "6.1.7";
name = "ccnet-${version}";
src = fetchurl {
url = "https://github.com/haiwen/ccnet/archive/v${version}.tar.gz";
sha256 = "1kkzdxa9r7sw1niwniznfkvilgvb7q039wq07cfk73qs3231bj7r";
};
nativeBuildInputs = [ pkgconfig which autoreconfHook vala python ];
propagatedBuildInputs = [ libsearpc libzdb libuuid libevent sqlite openssl ];
configureFlags = [ "--enable-server" ];
meta = with stdenv.lib; {
homepage = https://github.com/haiwen/ccnet;
description = "A framework for writing networked applications in C";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ ];
};
}