Files
patchelf/package-cmake.nix
John Ericson 03746bff2c Backport infra improvements from master to 0.15
This is the version currently used in Nixpkgs as the stable version, so
I am interested in seeing it be developable, even as the hope is to move
to a newer version.
2025-08-12 14:54:44 -04:00

18 lines
188 B
Nix

{
stdenv,
cmake,
ninja,
version,
src,
}:
stdenv.mkDerivation {
pname = "patchelf";
inherit version src;
nativeBuildInputs = [
cmake
ninja
];
doCheck = true;
}