summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-08-28 22:17:54 +0100
committerJörg Thalheim <joerg@thalheim.io>2018-08-28 22:18:02 +0100
commit9efffe0135c1ff7fcefbcd5ba0e521b41e56bb56 (patch)
tree7bd7683d78448502d64cddf30e5d2b2cd32393d1 /pkgs/tools/filesystems
parentc4e8f4b442e2500273040a17d61996ee99c3956b (diff)
downloadnixlib-9efffe0135c1ff7fcefbcd5ba0e521b41e56bb56.tar
nixlib-9efffe0135c1ff7fcefbcd5ba0e521b41e56bb56.tar.gz
nixlib-9efffe0135c1ff7fcefbcd5ba0e521b41e56bb56.tar.bz2
nixlib-9efffe0135c1ff7fcefbcd5ba0e521b41e56bb56.tar.lz
nixlib-9efffe0135c1ff7fcefbcd5ba0e521b41e56bb56.tar.xz
nixlib-9efffe0135c1ff7fcefbcd5ba0e521b41e56bb56.tar.zst
nixlib-9efffe0135c1ff7fcefbcd5ba0e521b41e56bb56.zip
hurd: cleanup unmaintained target
This has been not touched in 6 years. Let's remove it to cause less
problems when adding new cross-compiling infrastructure.
This also simplify gcc significantly.
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/nixpart/0.4/parted.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/tools/filesystems/nixpart/0.4/parted.nix b/pkgs/tools/filesystems/nixpart/0.4/parted.nix
index f356727e64bb..f7071e45232e 100644
--- a/pkgs/tools/filesystems/nixpart/0.4/parted.nix
+++ b/pkgs/tools/filesystems/nixpart/0.4/parted.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, lvm2, libuuid, gettext, readline
-, utillinux, check, enableStatic ? false, hurd ? null }:
+, utillinux, check, enableStatic ? false }:
 
 stdenv.mkDerivation rec {
   name = "parted-3.1";
@@ -12,8 +12,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ libuuid ]
     ++ stdenv.lib.optional (readline != null) readline
     ++ stdenv.lib.optional (gettext != null) gettext
-    ++ stdenv.lib.optional (lvm2 != null) lvm2
-    ++ stdenv.lib.optional (hurd != null) hurd;
+    ++ stdenv.lib.optional (lvm2 != null) lvm2;
 
   configureFlags =
        (if (readline != null)