vboot_reference: fix evaluation after 1aac1fe5dd

This commit is contained in:
Vladimír Čunát 2017-06-08 20:53:20 +02:00
parent 10f9fb63f1
commit 8b49936ad4
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -12,11 +12,10 @@ stdenv.mkDerivation rec {
sha256 = "14d3a93ha5k4al4ib43nyn1ppx7kgb12xw6mkflhx8nxmx8827nc";
};
buildInputs = [ pkgconfig openssl stdenv.cc.libc.static ] ++
(if libuuid == null
then []
else [ (stdenv.lib.overrideDerivation libuuid
(args: { configureFlags = args.configureFlags + " --enable-static"; })) ]);
buildInputs = [ pkgconfig openssl stdenv.cc.libc.static ]
++ stdenv.lib.optional (libuuid != null)
(libuuid.overrideAttrs (attrs:
{ configureFlags = attrs.configureFlags ++ [ "--enable-static" ]; }));
arch = if stdenv.system == "x86_64-linux" then "x86_64"
else if stdenv.system == "i686-linux" then "x86"