2010-07-28 16:35:01 +01:00
|
|
|
{ stdenv, fetchurl, parted, gtk, glib, intltool, gettext, libuuid
|
2015-06-12 10:53:33 +01:00
|
|
|
, pkgconfig, gtkmm, libxml2, hicolor_icon_theme
|
|
|
|
}:
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2013-02-14 12:13:10 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-04 23:08:51 +01:00
|
|
|
name = "gparted-0.23.0";
|
2009-09-10 17:57:21 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-08-04 23:08:51 +01:00
|
|
|
sha256 = "0m57bni3nkbbqq920ydzvasy2qc5j6w6bdssyn12jk4157gxvlbz";
|
2013-02-14 12:13:10 +00:00
|
|
|
url = "mirror://sourceforge/gparted/${name}.tar.bz2";
|
2009-09-10 17:57:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = "--disable-doc";
|
|
|
|
|
2015-06-17 18:36:06 +01:00
|
|
|
buildInputs = [ parted gtk glib libuuid gtkmm libxml2 hicolor_icon_theme ];
|
|
|
|
nativeBuildInputs = [ intltool gettext pkgconfig ];
|
2009-09-10 17:57:21 +01:00
|
|
|
|
2015-01-26 18:50:52 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 16:35:01 +01:00
|
|
|
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.
|
|
|
|
'';
|
2010-07-28 16:35:01 +01:00
|
|
|
homepage = http://gparted.sourceforge.net;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2015-08-04 23:08:51 +01:00
|
|
|
platforms = platforms.linux;
|
2015-01-26 18:50:52 +00:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
2009-09-10 17:57:21 +01:00
|
|
|
};
|
|
|
|
}
|