diff options
Diffstat (limited to 'pkgs/tools/text/discount/default.nix')
-rw-r--r-- | pkgs/tools/text/discount/default.nix | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/tools/text/discount/default.nix b/pkgs/tools/text/discount/default.nix deleted file mode 100644 index e71b5941ea93..000000000000 --- a/pkgs/tools/text/discount/default.nix +++ /dev/null @@ -1,43 +0,0 @@ -{ lib, stdenv, fetchFromGitHub }: - -stdenv.mkDerivation rec { - version = "3.0.0d"; - pname = "discount"; - - src = fetchFromGitHub { - owner = "Orc"; - repo = pname; - rev = "v${version}"; - sha256 = "sha256-fFSlW9qnH3NL9civ793LrScOJSuRe9i377BgpNzOXa0="; - }; - - patches = [ ./fix-configure-path.patch ]; - configureScript = "./configure.sh"; - configureFlags = [ - "--shared" - "--debian-glitch" # use deterministic mangling - "--pkg-config" - "--h1-title" - ]; - - enableParallelBuilding = true; - installTargets = [ "install.everything" ]; - - doCheck = true; - - postFixup = lib.optionalString stdenv.isDarwin '' - install_name_tool -id "$out/lib/libmarkdown.dylib" "$out/lib/libmarkdown.dylib" - for exe in $out/bin/*; do - install_name_tool -change libmarkdown.dylib "$out/lib/libmarkdown.dylib" "$exe" - done - ''; - - meta = with lib; { - description = "Implementation of Markdown markup language in C"; - homepage = "http://www.pell.portland.or.us/~orc/Code/discount/"; - license = licenses.bsd3; - maintainers = with maintainers; [ shell ]; - mainProgram = "markdown"; - platforms = platforms.unix; - }; -} |