mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
discount: 2.2.4 -> 2.2.6, tests
Now using the GitHub source. https://github.com/Orc/discount/releases/tag/v2.2.5 https://github.com/Orc/discount/releases/tag/v2.2.6
This commit is contained in:
parent
d0ea2df4fb
commit
cb1cf0959d
1 changed files with 10 additions and 6 deletions
|
@ -1,12 +1,14 @@
|
|||
{ stdenv, fetchurl }:
|
||||
{ stdenv, fetchurl, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2.2.4";
|
||||
name = "discount-${version}";
|
||||
version = "2.2.6";
|
||||
pname = "discount";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.pell.portland.or.us/~orc/Code/discount/discount-${version}.tar.bz2";
|
||||
sha256 = "199hwajpspqil0a4y3yxsmhdp2dm73gqkzfk4mrwzsmlq8y1xzbl";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Orc";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1y066jkxfas0vdixbqq66j9p00a102sbfgq5gbrblfczqjrmc38w";
|
||||
};
|
||||
|
||||
patches = ./fix-configure-path.patch;
|
||||
|
@ -19,6 +21,8 @@ stdenv.mkDerivation rec {
|
|||
"--with-fenced-code"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Implementation of Markdown markup language in C";
|
||||
homepage = http://www.pell.portland.or.us/~orc/Code/discount/;
|
||||
|
|
Loading…
Reference in a new issue