nixpkgs/pkgs/development/libraries/cmark/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2021-08-17 00:17:29 +02:00
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake }:
2016-01-04 10:06:37 +01:00
stdenv.mkDerivation rec {
pname = "cmark";
2021-07-20 02:15:50 +02:00
version = "0.30.1";
2016-01-04 10:06:37 +01:00
2017-05-11 09:35:54 +02:00
src = fetchFromGitHub {
owner = "jgm";
repo = pname;
2017-05-11 09:35:54 +02:00
rev = version;
2021-07-20 02:15:50 +02:00
sha256 = "sha256-UjDM2N6gCwO94F1nW3qCP9JX42MYAicAuGTKAXMy1Gg=";
2016-01-04 10:06:37 +01:00
};
2021-08-17 00:17:29 +02:00
patches = [
# Fix libcmark.pc paths (should be incorporated next release)
(fetchpatch {
url = "https://github.com/commonmark/cmark/commit/15762d7d391483859c241cdf82b1615c6b6a5a19.patch";
sha256 = "sha256-wdyK1tQolgfiwYMAaWMQZdCSbMDCijug5ykpoDl/HwI=";
})
];
2017-05-11 08:57:09 +02:00
nativeBuildInputs = [ cmake ];
cmakeFlags = [
2021-07-20 02:15:50 +02:00
# https://github.com/commonmark/cmark/releases/tag/0.30.1
# recommends distributions dynamically link
"-DCMARK_STATIC=OFF"
];
doCheck = true;
preCheck = let
lib_path = if stdenv.isDarwin then "DYLD_FALLBACK_LIBRARY_PATH" else "LD_LIBRARY_PATH";
in ''
export ${lib_path}=$(readlink -f ./src)
2017-05-11 09:35:54 +02:00
'';
2016-01-04 10:06:37 +01:00
meta = with lib; {
2016-01-04 10:06:37 +01:00
description = "CommonMark parsing and rendering library and program in C";
homepage = "https://github.com/jgm/cmark";
2017-05-11 09:35:54 +02:00
maintainers = [ maintainers.michelk ];
platforms = platforms.unix;
2018-09-30 11:22:23 +02:00
license = licenses.bsd2;
2016-01-04 10:06:37 +01:00
};
}