unbound: unify unbound and pyunbound source

and also update both at the same time
This commit is contained in:
Sandro Jäckel 2021-08-23 23:08:21 +02:00
parent 8056e5c346
commit fc5bfd6844
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 3 additions and 8 deletions

View file

@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
version = "1.13.1";
src = fetchurl {
url = "https://unbound.net/downloads/${pname}-${version}.tar.gz";
url = "https://nlnetlabs.nl/downloads/unbound/unbound-${version}.tar.gz";
sha256 = "sha256-hQTZe4/FvYlzRcldEW4O4N34yP+ZWQqytL0TJ4yfULg=";
};

View file

@ -1,16 +1,11 @@
{ lib, stdenv, fetchurl, openssl, expat, libevent, swig, pythonPackages }:
{ lib, stdenv, unbound, openssl, expat, libevent, swig, pythonPackages }:
let
inherit (pythonPackages) python;
in
stdenv.mkDerivation rec {
pname = "pyunbound";
version = "1.13.2";
src = fetchurl {
url = "https://nlnetlabs.nl/downloads/unbound/unbound-${version}.tar.gz";
sha256 = "sha256-ChO1R/O5KgJrXr0EI/VMmR5XGAN/2fckRYF/agQOGoM=";
};
inherit (unbound) version src;
nativeBuildInputs = [ swig ];