1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00

Fix vboot_reference's libuuid overriding to work on systems wo libuuid

This commit is contained in:
Gergely Risko 2013-05-27 23:36:43 +02:00
parent d73c8ed79d
commit 29b6370b0c

View file

@ -16,9 +16,11 @@ in stdenv.mkDerivation {
sha256 = "00qhwhh5ygrcfm9is8hrk1spqdvfs6aa744h10jbr03zics5bvac";
};
buildInputs = [ pkgconfig openssl
(stdenv.lib.overrideDerivation libuuid
(args: { configureFlags = args.configureFlags + " --enable-static"; })) ];
buildInputs = [ pkgconfig openssl ] ++
(if libuuid == null
then []
else [ (stdenv.lib.overrideDerivation libuuid
(args: { configureFlags = args.configureFlags + " --enable-static"; })) ]);
buildPhase = ''
make ARCH=${arch} `pwd`/build/cgpt/cgpt