summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2019-01-19 21:54:16 -0500
committerworldofpeace <worldofpeace@users.noreply.github.com>2019-01-19 21:56:08 -0500
commit56507df617ed80045ed212aa963e55c9f4e13a87 (patch)
treebacd5dcb7bc916d4ca7f6475c92350b504c78e31 /pkgs/tools/text
parent4e0f0790646d22f999b6845e7c27c47127428511 (diff)
downloadnixpkgs-56507df617ed80045ed212aa963e55c9f4e13a87.tar
nixpkgs-56507df617ed80045ed212aa963e55c9f4e13a87.tar.gz
nixpkgs-56507df617ed80045ed212aa963e55c9f4e13a87.tar.bz2
nixpkgs-56507df617ed80045ed212aa963e55c9f4e13a87.tar.lz
nixpkgs-56507df617ed80045ed212aa963e55c9f4e13a87.tar.xz
nixpkgs-56507df617ed80045ed212aa963e55c9f4e13a87.tar.zst
nixpkgs-56507df617ed80045ed212aa963e55c9f4e13a87.zip
discount: enable various configureFlags
Shouldn't be harmfull.
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/discount/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/tools/text/discount/default.nix b/pkgs/tools/text/discount/default.nix
index 75e380a6b66..69fce7a109c 100644
--- a/pkgs/tools/text/discount/default.nix
+++ b/pkgs/tools/text/discount/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl}:
+{ stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
   version = "2.2.4";
@@ -12,6 +12,13 @@ stdenv.mkDerivation rec {
   patches = ./fix-configure-path.patch;
   configureScript = "./configure.sh";
 
+  configureFlags = [
+    "--enable-all-features"
+    "--pkg-config"
+    "--shared"
+    "--with-fenced-code"
+  ];
+
   meta = with stdenv.lib; {
     description = "Implementation of Markdown markup language in C";
     homepage = http://www.pell.portland.or.us/~orc/Code/discount/;