Skip to content

Commit

Permalink
discount: 2.2.0 -> 2.2.2
Browse files Browse the repository at this point in the history
Discount: added missing update
  • Loading branch information
ndowens committed Mar 1, 2017
1 parent 61785c5 commit 3df8bef
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/tools/text/discount/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{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";

meta = with stdenv.lib; {
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;
};
}

0 comments on commit 3df8bef

Please sign in to comment.