Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
896 B
Nix
46 lines
896 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
guile,
|
|
pkg-config,
|
|
texinfo,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "guile-commonmark";
|
|
version = "unstable-2020-04-30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OrangeShark";
|
|
repo = "guile-commonmark";
|
|
rev = "538ffea25ca69d9f3ee17033534ba03cc27ba468";
|
|
hash = "sha256-9cA7iQ/GGEx+HwsdAxKC3IssqkT/Yg8ZxaiIprS5VuI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
texinfo # for makeinfo
|
|
];
|
|
buildInputs = [
|
|
guile
|
|
];
|
|
|
|
# https://github.com/OrangeShark/guile-commonmark/issues/20
|
|
doCheck = false;
|
|
|
|
makeFlags = [
|
|
"GUILE_AUTO_COMPILE=0"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/OrangeShark/guile-commonmark";
|
|
description = "Implementation of CommonMark for Guile";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = guile.meta.platforms;
|
|
};
|
|
}
|