mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
Updating gpt (patch by Shea Levy)
svn path=/nixpkgs/trunk/; revision=26545
This commit is contained in:
parent
72124a0aa9
commit
08341727ae
|
@ -1,14 +1,14 @@
|
|||
{ fetchurl, stdenv, libuuid, popt }:
|
||||
{ fetchurl, stdenv, libuuid, popt, icu }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gptfdisk-0.7.0";
|
||||
name = "gptfdisk-0.7.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.rodsbooks.com/gdisk/${name}.tgz";
|
||||
sha256 = "1912l01pj7wcaj2fp06yl6m893c52qh2qy0bkx33k6iq2k747zrf";
|
||||
sha256 = "142mrlcaprh7a6r55wvaxpvjmkffh7w8lcagarmwq4cfibfrnwd8";
|
||||
};
|
||||
|
||||
buildInputs = [ libuuid popt ];
|
||||
buildInputs = [ libuuid popt icu ];
|
||||
|
||||
installPhase = ''
|
||||
ensureDir $out/bin
|
||||
|
@ -29,3 +29,4 @@ stdenv.mkDerivation rec {
|
|||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue