summary refs log tree commit diff
path: root/nixos/tests/upnp.nix
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2022-10-29 21:10:28 +0200
committerPavol Rusnak <pavol@rusnak.io>2022-11-01 16:55:31 +0100
commitd7788c73037f9eeb721e9ec587f5d6987490afc6 (patch)
tree5c76e5a795d7dab7b11ca2754bbe22ee5c7d7c11 /nixos/tests/upnp.nix
parent08fbb5de2d9ca3989d5e591bab24fbc04abd6ba6 (diff)
downloadnixpkgs-d7788c73037f9eeb721e9ec587f5d6987490afc6.tar
nixpkgs-d7788c73037f9eeb721e9ec587f5d6987490afc6.tar.gz
nixpkgs-d7788c73037f9eeb721e9ec587f5d6987490afc6.tar.bz2
nixpkgs-d7788c73037f9eeb721e9ec587f5d6987490afc6.tar.lz
nixpkgs-d7788c73037f9eeb721e9ec587f5d6987490afc6.tar.xz
nixpkgs-d7788c73037f9eeb721e9ec587f5d6987490afc6.tar.zst
nixpkgs-d7788c73037f9eeb721e9ec587f5d6987490afc6.zip
miniupnpc_1: drop
- it is time to drop 6 years old version
- no package really requires miniupnpc 1.x
- miniupnpc package now defaults to 2.x
Diffstat (limited to 'nixos/tests/upnp.nix')
-rw-r--r--nixos/tests/upnp.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/upnp.nix b/nixos/tests/upnp.nix
index 451c8607d0e..af7cc1fe241 100644
--- a/nixos/tests/upnp.nix
+++ b/nixos/tests/upnp.nix
@@ -47,7 +47,7 @@ in
 
       client1 =
         { pkgs, nodes, ... }:
-        { environment.systemPackages = [ pkgs.miniupnpc_2 pkgs.netcat ];
+        { environment.systemPackages = [ pkgs.miniupnpc pkgs.netcat ];
           virtualisation.vlans = [ 2 ];
           networking.defaultGateway = internalRouterAddress;
           networking.interfaces.eth1.ipv4.addresses = [
@@ -65,7 +65,7 @@ in
 
       client2 =
         { pkgs, ... }:
-        { environment.systemPackages = [ pkgs.miniupnpc_2 ];
+        { environment.systemPackages = [ pkgs.miniupnpc ];
           virtualisation.vlans = [ 1 ];
           networking.interfaces.eth1.ipv4.addresses = [
             { address = externalClient2Address; prefixLength = 24; }