summary refs log tree commit diff
path: root/pkgs/tools/misc/gparted
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-01-26 19:50:52 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-01-26 19:50:53 +0100
commit220c578f76c72e0cc42ad82e3b2f0eb7c99d93cf (patch)
tree544845ff3cec776ba116fc5ecef3082b6309d0f5 /pkgs/tools/misc/gparted
parent593e829d18bea2d4fd95b0f4068059a3e213037a (diff)
downloadnixpkgs-220c578f76c72e0cc42ad82e3b2f0eb7c99d93cf.tar
nixpkgs-220c578f76c72e0cc42ad82e3b2f0eb7c99d93cf.tar.gz
nixpkgs-220c578f76c72e0cc42ad82e3b2f0eb7c99d93cf.tar.bz2
nixpkgs-220c578f76c72e0cc42ad82e3b2f0eb7c99d93cf.tar.lz
nixpkgs-220c578f76c72e0cc42ad82e3b2f0eb7c99d93cf.tar.xz
nixpkgs-220c578f76c72e0cc42ad82e3b2f0eb7c99d93cf.tar.zst
nixpkgs-220c578f76c72e0cc42ad82e3b2f0eb7c99d93cf.zip
Update gparted 0.19.1 -> 0.21.0
Diffstat (limited to 'pkgs/tools/misc/gparted')
-rw-r--r--pkgs/tools/misc/gparted/default.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/pkgs/tools/misc/gparted/default.nix b/pkgs/tools/misc/gparted/default.nix
index cc07ac95db8..e4557e6ae0b 100644
--- a/pkgs/tools/misc/gparted/default.nix
+++ b/pkgs/tools/misc/gparted/default.nix
@@ -2,11 +2,11 @@
 , pkgconfig, gtkmm, libxml2 }:
 
 stdenv.mkDerivation rec {
-  name = "gparted-0.19.1";
+  name = "gparted-0.21.0";
 
   src = fetchurl {
     url = "mirror://sourceforge/gparted/${name}.tar.bz2";
-    sha256 = "1x0mbks94jpzphb8hm8w0iqjrn665jkdm4qnzrvxrnvy0x3m2fwd";
+    sha256 = "1ab56pplnlnqnhvvgfx1s47g9iz78sb048xlwv7v7hzzx16c73rr";
   };
 
   configureFlags = "--disable-doc";
@@ -17,10 +17,16 @@ stdenv.mkDerivation rec {
 
   preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
 
-  meta = {
+  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 = stdenv.lib.licenses.gpl2;
-    platforms = with stdenv.lib.platforms; linux;
+    license = with licenses; gpl2Plus;
+    platforms = with platforms; linux;
+    maintainers = with maintainers; [ nckx ];
   };
 }