mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
44 lines
920 B
Nix
44 lines
920 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 = with maintainers; [ AndersonTorres ];
|
|
platforms = guile.meta.platforms;
|
|
};
|
|
}
|