summary refs log tree commit diff
path: root/pkgs/servers/softether
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2018-02-23 15:23:50 +0300
committergnidorah <gnidorah@users.noreply.github.com>2018-02-23 15:23:50 +0300
commitc6cd69341afe66ee15d4eb0ab3b6e203ac8b99f2 (patch)
treeb15906f625599a1349af347bf31a3eebe323e0f3 /pkgs/servers/softether
parentfbeb32994b835ea20599aa72c77a6342a1b409c4 (diff)
downloadnixpkgs-c6cd69341afe66ee15d4eb0ab3b6e203ac8b99f2.tar
nixpkgs-c6cd69341afe66ee15d4eb0ab3b6e203ac8b99f2.tar.gz
nixpkgs-c6cd69341afe66ee15d4eb0ab3b6e203ac8b99f2.tar.bz2
nixpkgs-c6cd69341afe66ee15d4eb0ab3b6e203ac8b99f2.tar.lz
nixpkgs-c6cd69341afe66ee15d4eb0ab3b6e203ac8b99f2.tar.xz
nixpkgs-c6cd69341afe66ee15d4eb0ab3b6e203ac8b99f2.tar.zst
nixpkgs-c6cd69341afe66ee15d4eb0ab3b6e203ac8b99f2.zip
softether: blacklist aarch64-linux platform
Diffstat (limited to 'pkgs/servers/softether')
-rw-r--r--pkgs/servers/softether/4.18.nix2
-rw-r--r--pkgs/servers/softether/4.20.nix2
-rw-r--r--pkgs/servers/softether/4.25.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/softether/4.18.nix b/pkgs/servers/softether/4.18.nix
index d8c3fe944cc..5b0d15136f8 100644
--- a/pkgs/servers/softether/4.18.nix
+++ b/pkgs/servers/softether/4.18.nix
@@ -48,6 +48,6 @@ stdenv.mkDerivation rec {
     homepage = https://www.softether.org/;
     license = licenses.gpl2;
     maintainers = [ maintainers.rick68 ];
-    platforms = platforms.linux;
+    platforms = filter (p: p != "aarch64-linux") platforms.linux;
   };
 }
diff --git a/pkgs/servers/softether/4.20.nix b/pkgs/servers/softether/4.20.nix
index 5d6f642ddc0..91dd0d0411f 100644
--- a/pkgs/servers/softether/4.20.nix
+++ b/pkgs/servers/softether/4.20.nix
@@ -48,6 +48,6 @@ stdenv.mkDerivation rec {
     homepage = https://www.softether.org/;
     license = licenses.gpl2;
     maintainers = [ maintainers.rick68 ];
-    platforms = platforms.linux;
+    platforms = filter (p: p != "aarch64-linux") platforms.linux;
   };
 }
diff --git a/pkgs/servers/softether/4.25.nix b/pkgs/servers/softether/4.25.nix
index 2dcb69d28f1..04053174f4e 100644
--- a/pkgs/servers/softether/4.25.nix
+++ b/pkgs/servers/softether/4.25.nix
@@ -48,6 +48,6 @@ stdenv.mkDerivation rec {
     homepage = https://www.softether.org/;
     license = licenses.gpl2;
     maintainers = [ maintainers.rick68 ];
-    platforms = platforms.linux;
+    platforms = filter (p: p != "aarch64-linux") platforms.linux;
   };
 }