1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 01:51:47 +02:00

Markdown test

This commit is contained in:
Eelco Dolstra 2020-07-22 13:51:11 +02:00
parent 26fcab53e0
commit 650ae14ced
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
5 changed files with 367 additions and 0 deletions

View file

@ -66,6 +66,7 @@
libxslt
docbook5
docbook_xsl_ns
lowdown
autoconf-archive
autoreconfHook
@ -187,6 +188,26 @@
};
lowdown = with final; stdenv.mkDerivation {
name = "lowdown-0.7.1";
src = fetchurl {
url = https://kristaps.bsd.lv/lowdown/snapshots/lowdown-0.7.1.tar.gz;
hash = "sha512-1daoAQfYD0LdhK6aFhrSQvadjc5GsSPBZw0fJDb+BEHYMBLjqiUl2A7H8N+l0W4YfGKqbsPYSrCy4vct+7U6FQ==";
};
outputs = [ "out" "dev" ];
buildInputs = [ which ];
configurePhase =
''
./configure \
PREFIX=${placeholder "dev"} \
BINDIR=${placeholder "out"}/bin
'';
};
};
hydraJobs = {