nixpkgs/pkgs/development/libraries/opendht/default.nix

41 lines
869 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub
2020-03-23 14:13:28 +00:00
, cmake, pkg-config
, asio, nettle, gnutls, msgpack, readline, libargon2
2017-07-11 18:00:07 +01:00
}:
stdenv.mkDerivation rec {
pname = "opendht";
2020-07-02 16:56:29 +01:00
version = "2.1.4";
2017-07-11 18:00:07 +01:00
src = fetchFromGitHub {
owner = "savoirfairelinux";
repo = "opendht";
2019-09-09 00:38:31 +01:00
rev = version;
2020-07-02 16:56:29 +01:00
sha256 = "1ax26ri1ifb6s8ppd28jmanka9yf8mw3np65q2h4djhhik0phhal";
2017-07-11 18:00:07 +01:00
};
nativeBuildInputs =
2020-03-23 14:13:28 +00:00
[ cmake
pkg-config
];
2017-07-11 18:00:07 +01:00
buildInputs =
2020-03-23 14:13:28 +00:00
[ asio
nettle
gnutls
msgpack
readline
libargon2
];
outputs = [ "out" "lib" "dev" "man" ];
2017-07-11 18:00:07 +01:00
meta = with stdenv.lib; {
description = "A C++11 Kademlia distributed hash table implementation";
homepage = "https://github.com/savoirfairelinux/opendht";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ taeer olynch thoughtpolice ];
platforms = platforms.linux;
2017-07-11 18:00:07 +01:00
};
}