From eb2f9f029a1d348e337a702ed8190428b9653b6d Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Sun, 30 Nov 2014 01:24:59 +0100 Subject: [PATCH] kubernetes: build only on x86_64-linux --- pkgs/applications/networking/cluster/kubernetes/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/kubernetes/default.nix b/pkgs/applications/networking/cluster/kubernetes/default.nix index 547338a11ae..7931da602d6 100644 --- a/pkgs/applications/networking/cluster/kubernetes/default.nix +++ b/pkgs/applications/networking/cluster/kubernetes/default.nix @@ -32,6 +32,6 @@ stdenv.mkDerivation rec { license = licenses.asl20; homepage = https://github.com/GoogleCloudPlatform; maintainers = with maintainers; [offline]; - platforms = with platforms; linux; + platforms = [ "x86_64-linux" ]; }; }