aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/gnu-efi
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-10-09 10:07:02 -0400
committerShea Levy <shea@shealevy.com>2013-10-09 10:07:02 -0400
commit19c7b847995db9ce87a568a1fc06950dd957227c (patch)
tree646c61715145c5da8fe1a3b73c99e9377cb42db5 /pkgs/development/libraries/gnu-efi
parente521757f21fcb7a97d649076d3c542a062d7667a (diff)
gnu-efi: Update to 3.0u
Signed-off-by: Shea Levy <shea@shealevy.com>
Diffstat (limited to 'pkgs/development/libraries/gnu-efi')
-rw-r--r--pkgs/development/libraries/gnu-efi/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/gnu-efi/default.nix b/pkgs/development/libraries/gnu-efi/default.nix
index ca24db94cd05..f741a0b4f34d 100644
--- a/pkgs/development/libraries/gnu-efi/default.nix
+++ b/pkgs/development/libraries/gnu-efi/default.nix
@@ -2,13 +2,13 @@
, fetchurl
}:
-let version = "3.0s"; in stdenv.mkDerivation {
+let version = "3.0u"; in stdenv.mkDerivation {
name = "gnu-efi-${version}";
src = fetchurl {
url = "mirror://sourceforge/gnu-efi/gnu-efi_${version}.orig.tar.gz";
- sha256 = "18bpswzkj81dadq1b7n2s9g0cz60l34ggzxlq21mb8va10j9zmhh";
+ sha256 = "0klkdxh1aqwwfm393q67nxww6liffyp2lfybbnh4q819b06la39w";
};
meta = {
@@ -34,7 +34,7 @@ let version = "3.0s"; in stdenv.mkDerivation {
'';
installPhase = ''
- make INSTALLROOT="$out" install
+ make PREFIX="$out" install
mkdir -pv $out/share/gnu-efi
install -D -m644 apps/*.efi $out/share/gnu-efi
'';