Fixing cryptsetup build.

svn path=/nixpkgs/trunk/; revision=17293
This commit is contained in:
Lluís Batlle i Rossell 2009-09-20 09:22:02 +00:00
parent 107a5ee327
commit b1a7cd1692
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, e2fsprogs, popt, devicemapper, udev }:
{stdenv, fetchurl, libuuid, popt, devicemapper, udev }:
stdenv.mkDerivation {
name = "cryptsetup-1.0.6";
@ -13,7 +13,7 @@ stdenv.mkDerivation {
sed -i -e 's@/sbin/udevsettle@${udev}/sbin/udevsettle@' lib/libdevmapper.c
'';
buildInputs = [ e2fsprogs popt devicemapper ];
buildInputs = [ libuuid popt devicemapper ];
meta = {
homepage = http://code.google.com/p/cryptsetup/;

View file

@ -4905,7 +4905,7 @@ let
};
cryptsetup = import ../os-specific/linux/cryptsetup {
inherit stdenv fetchurl e2fsprogs popt devicemapper udev;
inherit stdenv fetchurl libuuid popt devicemapper udev;
};
cramfsswap = import ../os-specific/linux/cramfsswap {