summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-08-28 23:32:39 +0100
committerGitHub <noreply@github.com>2018-08-28 23:32:39 +0100
commitc748ac5bdd4891bc837885b63e0144b9ef0e5ac3 (patch)
tree6ef041fa290afb668baf2eb1a60e14f36d5320a6 /pkgs/development/tools
parent89586ed0d030fa2e8cbe07e53bd875602817d6ca (diff)
parent9efffe0135c1ff7fcefbcd5ba0e521b41e56bb56 (diff)
downloadnixlib-c748ac5bdd4891bc837885b63e0144b9ef0e5ac3.tar
nixlib-c748ac5bdd4891bc837885b63e0144b9ef0e5ac3.tar.gz
nixlib-c748ac5bdd4891bc837885b63e0144b9ef0e5ac3.tar.bz2
nixlib-c748ac5bdd4891bc837885b63e0144b9ef0e5ac3.tar.lz
nixlib-c748ac5bdd4891bc837885b63e0144b9ef0e5ac3.tar.xz
nixlib-c748ac5bdd4891bc837885b63e0144b9ef0e5ac3.tar.zst
nixlib-c748ac5bdd4891bc837885b63e0144b9ef0e5ac3.zip
Merge pull request #45721 from Mic92/remove-hurd
hurd: cleanup unmaintained target
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/gdb/default.nix9
1 files changed, 1 insertions, 8 deletions
diff --git a/pkgs/development/tools/misc/gdb/default.nix b/pkgs/development/tools/misc/gdb/default.nix
index ae59f85a211e..1c2efbeea76f 100644
--- a/pkgs/development/tools/misc/gdb/default.nix
+++ b/pkgs/development/tools/misc/gdb/default.nix
@@ -11,9 +11,6 @@
 , pythonSupport ? hostPlatform == buildPlatform && !hostPlatform.isCygwin, python ? null
 , guile ? null
 
-# Additional dependencies for GNU/Hurd.
-, mig ? null, hurd ? null
-
 }:
 
 let
@@ -21,7 +18,6 @@ let
   version = "8.1.1";
 in
 
-assert targetPlatform.isHurd -> mig != null && hurd != null;
 assert pythonSupport -> python != null;
 
 stdenv.mkDerivation rec {
@@ -38,13 +34,10 @@ stdenv.mkDerivation rec {
   patches = [ ./debug-info-from-env.patch ]
     ++ stdenv.lib.optional stdenv.isDarwin ./darwin-target-match.patch;
 
-  nativeBuildInputs = [ pkgconfig texinfo perl setupDebugInfoDirs ]
-    # TODO(@Ericson2314) not sure if should be host or target
-    ++ stdenv.lib.optional targetPlatform.isHurd mig;
+  nativeBuildInputs = [ pkgconfig texinfo perl setupDebugInfoDirs ];
 
   buildInputs = [ ncurses readline gmp mpfr expat zlib guile ]
     ++ stdenv.lib.optional pythonSupport python
-    ++ stdenv.lib.optional targetPlatform.isHurd hurd
     ++ stdenv.lib.optional doCheck dejagnu;
 
   propagatedNativeBuildInputs = [ setupDebugInfoDirs ];