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:
parent
d73c8ed79d
commit
29b6370b0c
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue