about summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-09-29 08:59:16 +0200
committerGitHub <noreply@github.com>2016-09-29 08:59:16 +0200
commit1729dcd264a4066b45e6a65936e749a9b3191cc7 (patch)
tree275c21a0e6c735ca6364501ca32c1f328fd40d3b /pkgs/development/tools/misc
parentea5393d993044bad22c9dcd5a258b2a55391a406 (diff)
parent76aa997f209c017ed7e76623f846fc47dcc3cb71 (diff)
downloadnixlib-1729dcd264a4066b45e6a65936e749a9b3191cc7.tar
nixlib-1729dcd264a4066b45e6a65936e749a9b3191cc7.tar.gz
nixlib-1729dcd264a4066b45e6a65936e749a9b3191cc7.tar.bz2
nixlib-1729dcd264a4066b45e6a65936e749a9b3191cc7.tar.lz
nixlib-1729dcd264a4066b45e6a65936e749a9b3191cc7.tar.xz
nixlib-1729dcd264a4066b45e6a65936e749a9b3191cc7.tar.zst
nixlib-1729dcd264a4066b45e6a65936e749a9b3191cc7.zip
Merge pull request #19065 from peterhoeg/global
gnu global: 6.5.4 -> 6.5.5
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/global/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/global/default.nix b/pkgs/development/tools/misc/global/default.nix
index 3d09bc92cd30..d609b3b664cc 100644
--- a/pkgs/development/tools/misc/global/default.nix
+++ b/pkgs/development/tools/misc/global/default.nix
@@ -3,11 +3,12 @@
 }:
 
 stdenv.mkDerivation rec {
-  name = "global-6.5.4";
+  name = "global-${version}";
+  version = "6.5.5";
 
   src = fetchurl {
     url = "mirror://gnu/global/${name}.tar.gz";
-    sha256 = "19hxajpwld6qx0faz4rzyh1hfs25ycjmws6bas8pavx4hskf05mg";
+    sha256 = "0yyg91qw8399lnxfai4bxkh9yq71qdwp9kvadgzp05cdqni44nxw";
   };
 
   nativeBuildInputs = [ libtool makeWrapper ];
@@ -51,7 +52,7 @@ stdenv.mkDerivation rec {
     '';
     homepage = http://www.gnu.org/software/global/;
     license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ pSub ];
+    maintainers = with maintainers; [ pSub peterhoeg ];
     platforms = platforms.unix;
   };
 }