vboot_reference: fix evaluation after 1aac1fe5dd
This commit is contained in:
@@ -12,11 +12,10 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "14d3a93ha5k4al4ib43nyn1ppx7kgb12xw6mkflhx8nxmx8827nc";
|
sha256 = "14d3a93ha5k4al4ib43nyn1ppx7kgb12xw6mkflhx8nxmx8827nc";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig openssl stdenv.cc.libc.static ] ++
|
buildInputs = [ pkgconfig openssl stdenv.cc.libc.static ]
|
||||||
(if libuuid == null
|
++ stdenv.lib.optional (libuuid != null)
|
||||||
then []
|
(libuuid.overrideAttrs (attrs:
|
||||||
else [ (stdenv.lib.overrideDerivation libuuid
|
{ configureFlags = attrs.configureFlags ++ [ "--enable-static" ]; }));
|
||||||
(args: { configureFlags = args.configureFlags + " --enable-static"; })) ]);
|
|
||||||
|
|
||||||
arch = if stdenv.system == "x86_64-linux" then "x86_64"
|
arch = if stdenv.system == "x86_64-linux" then "x86_64"
|
||||||
else if stdenv.system == "i686-linux" then "x86"
|
else if stdenv.system == "i686-linux" then "x86"
|
||||||
|
|||||||
Reference in New Issue
Block a user