mirror of
https://github.com/NixOS/patchelf.git
synced 2025-10-15 03:58:23 +08:00
14 lines
181 B
Nix
14 lines
181 B
Nix
{
|
|
stdenv,
|
|
autoreconfHook,
|
|
version,
|
|
src,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "patchelf";
|
|
inherit version src;
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
doCheck = true;
|
|
}
|