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
37 lines
722 B
Nix
37 lines
722 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "mcpp";
|
|
version = "2.7.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "museoa";
|
|
repo = "mcpp";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-wz225bhBF0lFerOAhl8Rwmw8ItHd9BXQceweD9BqvEQ=";
|
|
};
|
|
|
|
env = lib.optionalAttrs stdenv.cc.isGNU {
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";
|
|
};
|
|
|
|
patches = [
|
|
./readlink.patch
|
|
];
|
|
|
|
configureFlags = [ "--enable-mcpplib" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/museoa/mcpp";
|
|
description = "Matsui's C preprocessor";
|
|
mainProgram = "mcpp";
|
|
license = licenses.bsd2;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|