mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
b96c1601a1
svn path=/nixpkgs/trunk/; revision=7545
12 lines
326 B
Nix
12 lines
326 B
Nix
{stdenv, fetchurl, e2fsprogs, ncurses, readline}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "parted-1.8.1";
|
|
src = fetchurl {
|
|
url = ftp://ftp.nluug.nl/pub/gnu/parted/parted-1.8.1.tar.bz2;
|
|
md5 = "c430b38fd5f3c7530e2c3a3bdf605a29";
|
|
};
|
|
buildInputs = [e2fsprogs ncurses readline];
|
|
patches = [./parted-trailingcomma.patch];
|
|
}
|