Files
patchelf/package-autotools.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

14 lines
181 B
Nix

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