summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-27 01:37:17 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-27 01:54:08 +0200
commite8596c189f3a0e47feae828b665b1a0f9549cac1 (patch)
treeeaa265931089ef891b2e6808e36c867caa1659d6 /pkgs/tools/text
parent08f866d88701e4ca7769ab59d5402416ef59ee70 (diff)
downloadnixlib-e8596c189f3a0e47feae828b665b1a0f9549cac1.tar
nixlib-e8596c189f3a0e47feae828b665b1a0f9549cac1.tar.gz
nixlib-e8596c189f3a0e47feae828b665b1a0f9549cac1.tar.bz2
nixlib-e8596c189f3a0e47feae828b665b1a0f9549cac1.tar.lz
nixlib-e8596c189f3a0e47feae828b665b1a0f9549cac1.tar.xz
nixlib-e8596c189f3a0e47feae828b665b1a0f9549cac1.tar.zst
nixlib-e8596c189f3a0e47feae828b665b1a0f9549cac1.zip
colordiff: 1.0.13 -> 1.0.15
Changes:
- Big improvements to side-by-side diff detection
- Additional colordiffrc example colour scheme file to match 'git diff'
- Misc fixes
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/colordiff/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/text/colordiff/default.nix b/pkgs/tools/text/colordiff/default.nix
index 34221d803661..18eae754f4f8 100644
--- a/pkgs/tools/text/colordiff/default.nix
+++ b/pkgs/tools/text/colordiff/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, perl /*, xmlto */}:
 
 stdenv.mkDerivation {
-  name = "colordiff-1.0.13";
+  name = "colordiff-1.0.15";
 
   src = fetchurl {
-    url = http://www.colordiff.org/colordiff-1.0.13.tar.gz;
-    sha256 = "0akcz1p3klsjnhwcqdfq4grs6paljc5c0jzr3mqla5f862hhaa6f";
+    url = http://www.colordiff.org/colordiff-1.0.15.tar.gz;
+    sha256 = "0icx4v2h1gy08vhh3qqi2qfyfjp37vgj27hq1fnjz83bg7ly8pjr";
   };
 
   buildInputs = [ perl /* xmlto */ ];
@@ -19,5 +19,6 @@ stdenv.mkDerivation {
     homepage = http://www.colordiff.org/;
     license = licenses.gpl3;
     platforms = platforms.linux;
+    maintainer = with maintainers; [ nckx ];
   };
 }