summary refs log tree commit diff
path: root/pkgs/tools/text/discount
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-02-28 18:45:06 -0600
committerndowens <ndowens04@gmail.com>2017-03-01 13:28:16 -0600
commit3df8bef60e97522de0b52e54e37fd7514bcc4062 (patch)
treedae5373bd34c886cacbc42c5ce863f5d415f6c35 /pkgs/tools/text/discount
parent61785c55319dbb1d3af1f2d362d028f6814570af (diff)
downloadnixpkgs-3df8bef60e97522de0b52e54e37fd7514bcc4062.tar
nixpkgs-3df8bef60e97522de0b52e54e37fd7514bcc4062.tar.gz
nixpkgs-3df8bef60e97522de0b52e54e37fd7514bcc4062.tar.bz2
nixpkgs-3df8bef60e97522de0b52e54e37fd7514bcc4062.tar.lz
nixpkgs-3df8bef60e97522de0b52e54e37fd7514bcc4062.tar.xz
nixpkgs-3df8bef60e97522de0b52e54e37fd7514bcc4062.tar.zst
nixpkgs-3df8bef60e97522de0b52e54e37fd7514bcc4062.zip
discount: 2.2.0 -> 2.2.2
Discount: added missing update
Diffstat (limited to 'pkgs/tools/text/discount')
-rw-r--r--pkgs/tools/text/discount/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/text/discount/default.nix b/pkgs/tools/text/discount/default.nix
index 4112ee891b5..1fe905c98f8 100644
--- a/pkgs/tools/text/discount/default.nix
+++ b/pkgs/tools/text/discount/default.nix
@@ -1,12 +1,14 @@
 {stdenv, fetchurl}:
+
 stdenv.mkDerivation rec {
-  version = "2.2.0";
+  version = "2.2.2";
   name = "discount-${version}";
 
   src = fetchurl {
     url = "http://www.pell.portland.or.us/~orc/Code/discount/discount-${version}.tar.bz2";
-    sha256 = "1wxrv86xr8cacwhzkyzmfxg58svfnn3swbpbk5hq621ckk19alxj";
+    sha256 = "0r4gjyk1ngx47zhb25q0gkjm3bz2m5x8ngrk6rim3y1y3rricygc";
   };
+
   patches = ./fix-configure-path.patch;
   configureScript = "./configure.sh";
 
@@ -14,7 +16,7 @@ stdenv.mkDerivation rec {
     description = "Implementation of Markdown markup language in C";
     homepage = "http://www.pell.portland.or.us/~orc/Code/discount/";
     license = licenses.bsd3;
-    maintainers = [ maintainers.shell ];
+    maintainers = with maintainers; [ shell ndowens ];
     platforms = platforms.unix;
   };
 }