adding gparted. qparted is no longer maintained (?)
svn path=/nixpkgs/trunk/; revision=17016
This commit is contained in:
parent
f55148cf88
commit
7a9b9e74a5
|
@ -0,0 +1,20 @@
|
|||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "gparted-0.4.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://downloads.sourceforge.net/project/gparted/gparted/gparted-0.4.6/gparted-0.4.6.tar.bz2;
|
||||
sha256 = "100n9ayl4sm1843w7wl8jav2crbr4k6x2jf58knlbvrr333yx9b5";
|
||||
};
|
||||
|
||||
configureFlags = "--disable-doc";
|
||||
|
||||
buildInputs = [parted gtk glib intltool gettext libuuid pkgconfig
|
||||
gtkmm gnomedocutils libxml2];
|
||||
|
||||
meta = {
|
||||
description = "gui partition tool";
|
||||
homepage = http://gparted.sourceforge.net;
|
||||
license = "GPLv2";
|
||||
};
|
||||
}
|
|
@ -7602,6 +7602,12 @@ let
|
|||
flex = flex2535;
|
||||
};
|
||||
|
||||
gparted = import ../tools/misc/gparted {
|
||||
inherit fetchurl stdenv parted intltool gettext libuuid pkgconfig libxml2;
|
||||
inherit (gtkLibs) gtk glib gtkmm;
|
||||
inherit (gnome) gnomedocutils;
|
||||
};
|
||||
|
||||
hexen = import ../games/hexen {
|
||||
inherit stdenv fetchurl SDL;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue