opendht: 1.8.0 → 2.0.0

This commit is contained in:
Vincent Laporte 2020-03-23 15:13:28 +01:00 committed by Vincent Laporte
parent 5040cd56b0
commit 926a875def

View File

@ -1,26 +1,27 @@
{ stdenv, fetchFromGitHub
, autoreconfHook, pkgconfig
, nettle, gnutls, msgpack, readline, libargon2
, cmake, pkg-config
, asio, nettle, gnutls, msgpack, readline, libargon2
}:
stdenv.mkDerivation rec {
pname = "opendht";
version = "1.8.0";
version = "2.0.0";
src = fetchFromGitHub {
owner = "savoirfairelinux";
repo = "opendht";
rev = version;
sha256 = "1mj3zsywxphh9wcazyqsldwwn14r77xv9cjsmc0nmcybsl2bwnpl";
sha256 = "1q1fwk8wwk9r6bp0indpr60ql668lsk16ykslacyhrh7kg97kvhr";
};
nativeBuildInputs =
[ autoreconfHook
pkgconfig
[ cmake
pkg-config
];
buildInputs =
[ nettle
[ asio
nettle
gnutls
msgpack
readline