Files
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

47 lines
1.3 KiB
Nix

{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "package-project-cmake";
version = "1.13.0";
src = fetchFromGitHub {
owner = "TheLartians";
repo = "PackageProject.cmake";
rev = "v${finalAttrs.version}";
hash = "sha256-RbqywBm+C1Bo1KeFL2MdsE2PMKWbc3x2iWswKGXtO9o=";
};
dontConfigure = true;
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/{,doc/}package-project-cmake
install -Dm644 CMakeLists.txt $out/share/package-project-cmake/
install -Dm644 README.md $out/share/doc/package-project-cmake/
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/TheLartians/PackageProject.cmake";
description = "CMake script for packaging C/C++ projects";
longDescription = ''
Help other developers use your project. A CMake script for packaging
C/C++ projects for simple project installation while employing
best-practices for maximum compatibility. Creating installable
CMake scripts always requires a large amount of boilerplate code
to get things working. This small script should simplify the CMake
packaging process into a single, easy-to-use command.
'';
license = licenses.mit;
maintainers = [ ];
platforms = platforms.all;
};
})