summary refs log tree commit diff
path: root/pkgs/tools/text/numdiff
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-02-28 17:16:33 -0600
committerndowens <ndowens04@gmail.com>2017-02-28 17:16:33 -0600
commitcb766725c749c5145f4062569c279b7207399949 (patch)
treeb45e3b6ab8a60e60a0df5417e9ea0cb9f46caf40 /pkgs/tools/text/numdiff
parent61785c55319dbb1d3af1f2d362d028f6814570af (diff)
downloadnixpkgs-cb766725c749c5145f4062569c279b7207399949.tar
nixpkgs-cb766725c749c5145f4062569c279b7207399949.tar.gz
nixpkgs-cb766725c749c5145f4062569c279b7207399949.tar.bz2
nixpkgs-cb766725c749c5145f4062569c279b7207399949.tar.lz
nixpkgs-cb766725c749c5145f4062569c279b7207399949.tar.xz
nixpkgs-cb766725c749c5145f4062569c279b7207399949.tar.zst
nixpkgs-cb766725c749c5145f4062569c279b7207399949.zip
numdiff: 5.8.1 -> 5.9.0
Diffstat (limited to 'pkgs/tools/text/numdiff')
-rw-r--r--pkgs/tools/text/numdiff/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/tools/text/numdiff/default.nix b/pkgs/tools/text/numdiff/default.nix
index db7eeb789af..8f22a9e7600 100644
--- a/pkgs/tools/text/numdiff/default.nix
+++ b/pkgs/tools/text/numdiff/default.nix
@@ -1,23 +1,23 @@
 { stdenv, fetchurl }:
 
-let
-  version = "5.8.1";
-in
-stdenv.mkDerivation {
+
+stdenv.mkDerivation rec {
   name = "numdiff-${version}";
+  version = "5.9.0";
+
   src = fetchurl {
     url = "mirror://savannah/numdiff/numdiff-${version}.tar.gz";
-    sha256 = "00zm9955gjsid0daa94sbw69klk0vrnrrh0ihijza99kysnvmblr";
+    sha256 = "1vzmjh8mhwwysn4x4m2vif7q2k8i19x8azq7pzmkwwj4g48lla47";
   };
-  meta = {
+  meta = with stdenv.lib; {
     description = ''
       A little program that can be used to compare putatively similar files
       line by line and field by field, ignoring small numeric differences
       or/and different numeric formats
     '';
     homepage = http://www.nongnu.org/numdiff/;
-    license = stdenv.lib.licenses.gpl3Plus;
-    maintainers = [ stdenv.lib.maintainers.bbenoist ];
-    platforms = stdenv.lib.platforms.gnu;
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ bbenoist ndowens ];
+    platforms = platforms.gnu;
   };
 }