mirror of
https://github.com/NixOS/patchelf.git
synced 2025-10-16 22:46:51 +08:00
18 lines
188 B
Nix
18 lines
188 B
Nix
{
|
|
stdenv,
|
|
cmake,
|
|
ninja,
|
|
version,
|
|
src,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "patchelf";
|
|
inherit version src;
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
];
|
|
doCheck = true;
|
|
}
|