Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5040cd56b000
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 926a875def3d
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 7, 2020

  1. opendht: 1.8.0 → 2.0.0

    vbgl committed Apr 7, 2020
    Copy the full SHA
    926a875 View commit details
Showing with 8 additions and 7 deletions.
  1. +8 −7 pkgs/development/libraries/opendht/default.nix
15 changes: 8 additions & 7 deletions pkgs/development/libraries/opendht/default.nix
Original file line number Diff line number Diff line change
@@ -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