summary refs log tree commit diff
path: root/pkgs/development
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 /pkgs/development
parent8741ff387d96756835fa0c41d0906d7ab96831ba (diff)
downloadnixpkgs-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar
nixpkgs-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar.gz
nixpkgs-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar.bz2
nixpkgs-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar.lz
nixpkgs-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar.xz
nixpkgs-d92dc9bb3e4d957ad1bdfdd80abde7c3be966286.tar.zst
nixpkgs-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").
Diffstat (limited to 'pkgs/development')
-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 d67407eb03d..0d3eb5c824f 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 ];
   };
 }