Updating gpt (patch by Shea Levy)

svn path=/nixpkgs/trunk/; revision=26545
This commit is contained in:
Lluís Batlle i Rossell 2011-03-27 14:02:51 +00:00
parent 72124a0aa9
commit 08341727ae

View file

@ -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;
};
}