ccnet: use python3

This commit is contained in:
Frederik Rietdijk 2021-03-25 11:25:09 +01:00
parent 344bce2431
commit 050fa17bd6

View file

@ -1,4 +1,4 @@
{lib, stdenv, fetchurl, which, autoreconfHook, pkg-config, vala, python, libsearpc, libzdb, libuuid, libevent, sqlite, openssl}: {lib, stdenv, fetchurl, which, autoreconfHook, pkg-config, vala, python3, libsearpc, libzdb, libuuid, libevent, sqlite, openssl}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "6.1.8"; version = "6.1.8";
@ -10,11 +10,13 @@ stdenv.mkDerivation rec {
sha256 = "0qlpnrz30ldrqnvbj59d54qdghxpxc5lsq6kf3dw2b93jnzkcmmm"; sha256 = "0qlpnrz30ldrqnvbj59d54qdghxpxc5lsq6kf3dw2b93jnzkcmmm";
}; };
nativeBuildInputs = [ pkg-config which autoreconfHook vala python ]; nativeBuildInputs = [ pkg-config which autoreconfHook vala python3 libsearpc ];
propagatedBuildInputs = [ libsearpc libzdb libuuid libevent sqlite openssl ]; propagatedBuildInputs = [ libsearpc libzdb libuuid libevent sqlite openssl ];
configureFlags = [ "--enable-server" ]; configureFlags = [ "--enable-server" ];
strictDeps = true;
meta = with lib; { meta = with lib; {
homepage = "https://github.com/haiwen/ccnet"; homepage = "https://github.com/haiwen/ccnet";
description = "A framework for writing networked applications in C"; description = "A framework for writing networked applications in C";