nixpkgs/pkgs/tools/misc/gparted/default.nix
Damien Cassou 69f4fc4be6 Add hicolor_icon_theme dependency
This avoids having icon-theme.cache generated.
2015-06-12 11:53:33 +02:00

32 lines
957 B
Nix

{ stdenv, fetchurl, parted, gtk, glib, intltool, gettext, libuuid
, pkgconfig, gtkmm, libxml2, hicolor_icon_theme
}:
stdenv.mkDerivation rec {
name = "gparted-0.22.0";
src = fetchurl {
sha256 = "09vg5lxvh81x54ps5ayfjd4jl84wprn42i1wifnfmj44dqd5wxda";
url = "mirror://sourceforge/gparted/${name}.tar.bz2";
};
configureFlags = "--disable-doc";
buildInputs = [
parted gtk glib intltool gettext libuuid pkgconfig gtkmm libxml2 hicolor_icon_theme
];
meta = with stdenv.lib; {
description = "Graphical disk partitioning tool";
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;
license = licenses.gpl2Plus;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
}