discount: enable various configureFlags
Shouldn't be harmfull.
This commit is contained in:
parent
4e0f079064
commit
56507df617
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, fetchurl}:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2.2.4";
|
version = "2.2.4";
|
||||||
|
@ -12,6 +12,13 @@ stdenv.mkDerivation rec {
|
||||||
patches = ./fix-configure-path.patch;
|
patches = ./fix-configure-path.patch;
|
||||||
configureScript = "./configure.sh";
|
configureScript = "./configure.sh";
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--enable-all-features"
|
||||||
|
"--pkg-config"
|
||||||
|
"--shared"
|
||||||
|
"--with-fenced-code"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Implementation of Markdown markup language in C";
|
description = "Implementation of Markdown markup language in C";
|
||||||
homepage = http://www.pell.portland.or.us/~orc/Code/discount/;
|
homepage = http://www.pell.portland.or.us/~orc/Code/discount/;
|
||||||
|
|
Loading…
Reference in New Issue