Merge pull request #221831 from justinas/miniupnpd-iptables-legacy
This commit is contained in:
commit
0bb4866281
1 changed files with 4 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
|||
{ stdenv, lib, fetchurl, iptables, libuuid, openssl, pkg-config
|
||||
{ stdenv, lib, fetchurl, iptables-legacy, libuuid, openssl, pkg-config
|
||||
, which, iproute2, gnused, coreutils, gawk, makeWrapper
|
||||
, nixosTests
|
||||
}:
|
||||
|
||||
let
|
||||
scriptBinEnv = lib.makeBinPath [ which iproute2 iptables gnused coreutils gawk ];
|
||||
scriptBinEnv = lib.makeBinPath [ which iproute2 iptables-legacy gnused coreutils gawk ];
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "miniupnpd";
|
||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0crv975qqppnj27jba96yysq2911y49vjd74sp9vnjb54z0d9pyi";
|
||||
};
|
||||
|
||||
buildInputs = [ iptables libuuid openssl ];
|
||||
buildInputs = [ iptables-legacy libuuid openssl ];
|
||||
nativeBuildInputs= [ pkg-config makeWrapper ];
|
||||
|
||||
|
||||
|
@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
passthru.tests = {
|
||||
bittorrent-integration = nixosTests.bittorrent;
|
||||
inherit (nixosTests) upnp;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue