Files
nixpkgs/pkgs/by-name/li/libcutl/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

41 lines
1016 B
Nix

{
build2,
fetchgit,
gccStdenv,
lib,
xercesc,
}:
gccStdenv.mkDerivation (finalAttrs: {
pname = "libcutl";
version = "1.11.0";
src = fetchgit {
url = "https://git.codesynthesis.com/libcutl/libcutl.git";
tag = "v${finalAttrs.version}";
hash = "sha256-LY2ZyxduI6xftVjVqjNkhYPFTL5bvHC289Qcei1Kiw4=";
};
nativeBuildInputs = [ build2 ];
buildInputs = [ xercesc ];
enableParallelBuilding = true;
doCheck = true;
meta = {
description = "C++ utility library from Code Synthesis";
longDescription = ''
libcutl is a C++ utility library.
It contains a collection of generic and independent components such as
meta-programming tests, smart pointers, containers, compiler building blocks, etc.
'';
homepage = "https://codesynthesis.com/projects/libcutl/";
changelog = "https://git.codesynthesis.com/cgit/libcutl/libcutl/log/";
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.xzfc ];
license = lib.licenses.mit;
};
})