summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-09-16 14:30:53 +0000
committerLudovic Courtès <ludo@gnu.org>2009-09-16 14:30:53 +0000
commit26bf0b0150e8082c8cdb115d45f947d34630bf8b (patch)
treeed22ec522c1661087dc6a3daadd2a7501ec951fd /pkgs/tools
parentba315f3052e0a447a9892bac37bf06cb51f878d6 (diff)
downloadnixlib-26bf0b0150e8082c8cdb115d45f947d34630bf8b.tar
nixlib-26bf0b0150e8082c8cdb115d45f947d34630bf8b.tar.gz
nixlib-26bf0b0150e8082c8cdb115d45f947d34630bf8b.tar.bz2
nixlib-26bf0b0150e8082c8cdb115d45f947d34630bf8b.tar.lz
nixlib-26bf0b0150e8082c8cdb115d45f947d34630bf8b.tar.xz
nixlib-26bf0b0150e8082c8cdb115d45f947d34630bf8b.tar.zst
nixlib-26bf0b0150e8082c8cdb115d45f947d34630bf8b.zip
Fix GNU Fdisk.
svn path=/nixpkgs/trunk/; revision=17195
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/fdisk/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/fdisk/default.nix b/pkgs/tools/system/fdisk/default.nix
index d866f81c3ceb..ed8cb8044cdb 100644
--- a/pkgs/tools/system/fdisk/default.nix
+++ b/pkgs/tools/system/fdisk/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, parted, e2fsprogs, gettext }:
+{ fetchurl, stdenv, parted, libuuid, gettext }:
 
 stdenv.mkDerivation rec {
   name = "fdisk-1.2.3";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "04nsa0xf1m5zy45wqv88ksk3xxc86r9n8f4mj3r6gm7rz0sfiqil";
   };
 
-  buildInputs = [ parted e2fsprogs gettext ];
+  buildInputs = [ parted libuuid gettext ];
 
   doCheck = true;