mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
11 lines
327 B
Nix
11 lines
327 B
Nix
{stdenv, fetchurl, e2fsprogs, ncurses, readline}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "parted-1.6.23";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/parted-1.6.23.tar.gz;
|
|
md5 = "7e46a32def60ea355c193d9225691742";
|
|
};
|
|
buildInputs = [e2fsprogs ncurses readline];
|
|
patches = [./parted-trailingcomma.patch];
|
|
}
|