3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/gparted/default.nix

33 lines
986 B
Nix
Raw Normal View History

{ stdenv, fetchurl, parted, gtk, glib, intltool, gettext, libuuid
, pkgconfig, gtkmm, libxml2 }:
stdenv.mkDerivation rec {
2015-01-26 18:50:52 +00:00
name = "gparted-0.21.0";
src = fetchurl {
url = "mirror://sourceforge/gparted/${name}.tar.bz2";
2015-01-26 18:50:52 +00:00
sha256 = "1ab56pplnlnqnhvvgfx1s47g9iz78sb048xlwv7v7hzzx16c73rr";
};
configureFlags = "--disable-doc";
buildInputs = [
parted gtk glib intltool gettext libuuid pkgconfig gtkmm libxml2
];
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
2015-01-26 18:50:52 +00:00
meta = with stdenv.lib; {
description = "Graphical disk partitioning tool";
2015-01-26 18:50:52 +00:00
longDescription = ''
GNOME Partition Editor for creating, reorganizing, and deleting disk
partitions. GParted enables you to change the partition organization
while preserving the partition contents.
'';
homepage = http://gparted.sourceforge.net;
2015-01-26 18:50:52 +00:00
license = with licenses; gpl2Plus;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
}