From 11a185b61f3fdc4a7f844f8660735c136a30ee60 Mon Sep 17 00:00:00 2001 From: Renaud Date: Thu, 2 May 2019 22:42:16 +0200 Subject: [PATCH] softether_4_25: restrict to x86_64-linux --- pkgs/servers/softether/4.25.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/softether/4.25.nix b/pkgs/servers/softether/4.25.nix index 04053174f4e4..7eaa5b3e8a05 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 = filter (p: p != "aarch64-linux") platforms.linux; + platforms = [ "x86_64-linux" ]; }; }