mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
discount: new package
This commit is contained in:
parent
b168a8c118
commit
e56a6c1bec
3 changed files with 32 additions and 0 deletions
18
pkgs/tools/text/discount/default.nix
Normal file
18
pkgs/tools/text/discount/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{stdenv, fetchurl}:
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2.1.6";
|
||||
name = "discount-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.pell.portland.or.us/~orc/Code/discount/discount-${version}.tar.bz2";
|
||||
sha256 = "15h726m5yalq15hkxxfw4bxwd6wkwkan5q7s80pgi1z32ygb4avh";
|
||||
};
|
||||
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;
|
||||
};
|
||||
}
|
12
pkgs/tools/text/discount/fix-configure-path.patch
Normal file
12
pkgs/tools/text/discount/fix-configure-path.patch
Normal file
|
@ -0,0 +1,12 @@
|
|||
diff -rupN discount-2.1.6-original/configure.inc discount-2.1.6/configure.inc
|
||||
--- discount-2.1.6-original/configure.inc 2014-10-10 15:34:24.158325345 +0100
|
||||
+++ discount-2.1.6/configure.inc 2014-10-10 15:34:33.553325321 +0100
|
||||
@@ -32,7 +32,7 @@
|
||||
# this preamble code is executed when this file is sourced and it picks
|
||||
# interesting things off the command line.
|
||||
#
|
||||
-ac_default_path="/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin"
|
||||
+ac_default_path=$PATH
|
||||
|
||||
ac_standard="--src=DIR where the source lives (.)
|
||||
--prefix=DIR where to install the final product (/usr/local)
|
|
@ -665,6 +665,8 @@ let
|
|||
|
||||
direnv = callPackage ../tools/misc/direnv { };
|
||||
|
||||
discount = callPackage ../tools/text/discount { };
|
||||
|
||||
ditaa = callPackage ../tools/graphics/ditaa { };
|
||||
|
||||
dlx = callPackage ../misc/emulators/dlx { };
|
||||
|
|
Loading…
Reference in a new issue