summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2019-10-06 11:01:44 +0000
committerGitHub <noreply@github.com>2019-10-06 11:01:44 +0000
commitb01289392c84da6fe748d48c7fe2b6b4daed1bf8 (patch)
treeb88814ac4cc8e0a49913e5317e93f10dbcf8b724
parent7e9eec608e6bfb01d6bc658ce9e3f1d0998f4990 (diff)
parenta08851c925cf2eef92b4f6ccf9581751633f0f40 (diff)
downloadnixpkgs-b01289392c84da6fe748d48c7fe2b6b4daed1bf8.tar
nixpkgs-b01289392c84da6fe748d48c7fe2b6b4daed1bf8.tar.gz
nixpkgs-b01289392c84da6fe748d48c7fe2b6b4daed1bf8.tar.bz2
nixpkgs-b01289392c84da6fe748d48c7fe2b6b4daed1bf8.tar.lz
nixpkgs-b01289392c84da6fe748d48c7fe2b6b4daed1bf8.tar.xz
nixpkgs-b01289392c84da6fe748d48c7fe2b6b4daed1bf8.tar.zst
nixpkgs-b01289392c84da6fe748d48c7fe2b6b4daed1bf8.zip
Merge pull request #70449 from joachifm/feat/graphene-hardened-platforms
graphene-hardened-malloc: constrain platforms to x64 linux
-rw-r--r--pkgs/development/libraries/graphene-hardened-malloc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/graphene-hardened-malloc/default.nix b/pkgs/development/libraries/graphene-hardened-malloc/default.nix
index 66c5d8eb061..be32a74ea45 100644
--- a/pkgs/development/libraries/graphene-hardened-malloc/default.nix
+++ b/pkgs/development/libraries/graphene-hardened-malloc/default.nix
@@ -52,6 +52,6 @@ stdenv.mkDerivation rec {
     '';
     license = licenses.mit;
     maintainers = with maintainers; [ ris ];
-    platforms = platforms.linux;
+    platforms = [ "x86_64-linux" ];
   };
 }