ieda: init at 0-unstable-2024-10-11 (#338769)
[NixPkgs.git] / pkgs / by-name / gu / guile-commonmark / package.nix
blob24be48cb0910720fe0240493ca991476702b1547
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   guile,
7   pkg-config,
8   texinfo,
9 }:
11 stdenv.mkDerivation {
12   pname = "guile-commonmark";
13   version = "unstable-2020-04-30";
15   src = fetchFromGitHub {
16     owner = "OrangeShark";
17     repo = "guile-commonmark";
18     rev = "538ffea25ca69d9f3ee17033534ba03cc27ba468";
19     hash = "sha256-9cA7iQ/GGEx+HwsdAxKC3IssqkT/Yg8ZxaiIprS5VuI=";
20   };
22   nativeBuildInputs = [
23     autoreconfHook
24     pkg-config
25     texinfo # for makeinfo
26   ];
27   buildInputs = [
28     guile
29   ];
31   # https://github.com/OrangeShark/guile-commonmark/issues/20
32   doCheck = false;
34   makeFlags = [
35     "GUILE_AUTO_COMPILE=0"
36   ];
38   meta = with lib; {
39     homepage = "https://github.com/OrangeShark/guile-commonmark";
40     description = "Implementation of CommonMark for Guile";
41     license = licenses.lgpl3Plus;
42     maintainers = with maintainers; [ ];
43     platforms = guile.meta.platforms;
44   };