4edfc0e93d
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/k21v52qac99ppn2ba80ywki05cv6m65r-ccnet-6.1.8/bin/ccnet -h’ got 0 exit code - ran ‘/nix/store/k21v52qac99ppn2ba80ywki05cv6m65r-ccnet-6.1.8/bin/ccnet --help’ got 0 exit code - found 6.1.8 with grep in /nix/store/k21v52qac99ppn2ba80ywki05cv6m65r-ccnet-6.1.8 - directory tree listing: https://gist.github.com/275cfa6377f77e502dcc0309bb683687 - du listing: https://gist.github.com/f2f22837494355a9bf385b8432a4b210
26 lines
834 B
Nix
26 lines
834 B
Nix
{stdenv, fetchurl, which, autoreconfHook, pkgconfig, vala, python, libsearpc, libzdb, libuuid, libevent, sqlite, openssl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "6.1.8";
|
|
seafileVersion = "6.1.8";
|
|
name = "ccnet-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/haiwen/ccnet/archive/v${version}.tar.gz";
|
|
sha256 = "0qlpnrz30ldrqnvbj59d54qdghxpxc5lsq6kf3dw2b93jnzkcmmm";
|
|
};
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|