summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkgs/applications/networking/gns3/server.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/networking/gns3/server.nix b/pkgs/applications/networking/gns3/server.nix
index 98ae803492f0..48d48de83b2a 100644
--- a/pkgs/applications/networking/gns3/server.nix
+++ b/pkgs/applications/networking/gns3/server.nix
@@ -7,6 +7,7 @@
, python3
, fetchFromGitHub
, pkgsStatic
+, stdenv
}:
python3.pkgs.buildPythonApplication {
@@ -46,8 +47,8 @@ python3.pkgs.buildPythonApplication {
zipstream
];
- postInstall = ''
- rm $out/bin/gns3loopback # For Windows only
+ postInstall = lib.optionalString (!stdenv.hostPlatform.isWindows) ''
+ rm $out/bin/gns3loopback
'';
doCheck = true;