nixpkgs/pkgs/tools/system/fdisk/default.nix
Ludovic Courtès c3943258ce Add GNU fdisk.
svn path=/nixpkgs/trunk/; revision=16626
2009-08-09 22:15:40 +00:00

30 lines
669 B
Nix

{ fetchurl, stdenv, parted, e2fsprogs, gettext }:
stdenv.mkDerivation rec {
name = "fdisk-1.2.3";
src = fetchurl {
url = "mirror://gnu/fdisk/${name}.tar.bz2";
sha256 = "04nsa0xf1m5zy45wqv88ksk3xxc86r9n8f4mj3r6gm7rz0sfiqil";
};
buildInputs = [ parted e2fsprogs gettext ];
doCheck = true;
meta = {
description = "GNU fdisk, a command-line disk partitioning tool";
longDescription = ''
GNU fdisk provides alternatives to util-linux fdisk and util-linux
cfdisk. It uses GNU Parted.
'';
license = "GPLv3+";
homepage = http://www.gnu.org/software/fdisk/;
maintainers = [ stdenv.lib.maintainers.ludo ];
};
}