mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ 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;
|
|
};
|
|
}
|