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