Fix GNU Fdisk.

svn path=/nixpkgs/trunk/; revision=17195
This commit is contained in:
Ludovic Courtès 2009-09-16 14:30:53 +00:00
parent ba315f3052
commit 26bf0b0150
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -684,7 +684,7 @@ let
};
fdisk = import ../tools/system/fdisk {
inherit fetchurl stdenv parted e2fsprogs gettext;
inherit fetchurl stdenv parted libuuid gettext;
};
figlet = import ../tools/misc/figlet {