summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-15 15:33:31 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-28 11:03:01 +0100
commitd92dc9bb3e4d957ad1bdfdd80abde7c3be966286 (patch)
tree359210964117c2d5744cbfe3f84ae7d7eeb68951
parent8741ff387d96756835fa0c41d0906d7ab96831ba (diff)
downloadnixlib-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar
nixlib-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar.gz
nixlib-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar.bz2
nixlib-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar.lz
nixlib-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar.xz
nixlib-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar.zst
nixlib-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.zip
gdb: Build on Darwin
Note that it doesn't actually work unless you run it as root, because
the Darwin kernel disallows unsigned debuggers (you'll get an error
message "please check gdb is codesigned").
-rw-r--r--pkgs/development/tools/misc/gdb/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/gdb/default.nix b/pkgs/development/tools/misc/gdb/default.nix
index d67407eb03df..0d3eb5c824fa 100644
--- a/pkgs/development/tools/misc/gdb/default.nix
+++ b/pkgs/development/tools/misc/gdb/default.nix
@@ -78,7 +78,7 @@ stdenv.mkDerivation rec {
 
     license = "GPLv3+";
 
-    platforms = with platforms; linux ++ cygwin;
+    platforms = with platforms; linux ++ cygwin ++ darwin;
     maintainers = with maintainers; [ pierron ];
   };
 }