nixpkgs/pkgs/tools/text/discount/default.nix
volth f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00

34 lines
762 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "2.2.6";
pname = "discount";
src = fetchFromGitHub {
owner = "Orc";
repo = pname;
rev = "v${version}";
sha256 = "1y066jkxfas0vdixbqq66j9p00a102sbfgq5gbrblfczqjrmc38w";
};
patches = ./fix-configure-path.patch;
configureScript = "./configure.sh";
configureFlags = [
"--enable-all-features"
"--pkg-config"
"--shared"
"--with-fenced-code"
];
doCheck = true;
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;
maintainers = with maintainers; [ shell ndowens ];
platforms = platforms.unix;
};
}