Unverified Commit 0bb48662 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #221831 from justinas/miniupnpd-iptables-legacy

parents d3acd155 b38d7e5e
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
{ 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; {