2014-10-10 16:58:11 +02:00
|
|
|
{stdenv, fetchurl}:
|
2017-03-01 01:45:06 +01:00
|
|
|
|
2014-10-10 16:58:11 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-08 11:11:02 +01:00
|
|
|
version = "2.2.3";
|
2014-10-10 16:58:11 +02:00
|
|
|
name = "discount-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.pell.portland.or.us/~orc/Code/discount/discount-${version}.tar.bz2";
|
2018-03-08 11:11:02 +01:00
|
|
|
sha256 = "17797xiaq0kk152pj4rvd9grg4i518x3glnwg1lgl8rry3dbrzx8";
|
2014-10-10 16:58:11 +02:00
|
|
|
};
|
2017-03-01 01:45:06 +01:00
|
|
|
|
2014-10-10 16:58:11 +02:00
|
|
|
patches = ./fix-configure-path.patch;
|
|
|
|
configureScript = "./configure.sh";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Implementation of Markdown markup language in C";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://www.pell.portland.or.us/~orc/Code/discount/;
|
2014-10-10 16:58:11 +02:00
|
|
|
license = licenses.bsd3;
|
2017-03-01 01:45:06 +01:00
|
|
|
maintainers = with maintainers; [ shell ndowens ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.unix;
|
2014-10-10 16:58:11 +02:00
|
|
|
};
|
|
|
|
}
|