mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
16 lines
243 B
Nix
16 lines
243 B
Nix
{
|
|
lib,
|
|
bash,
|
|
patchcil,
|
|
makeSetupHook,
|
|
}:
|
|
|
|
makeSetupHook {
|
|
name = "auto-patchcil-hook";
|
|
substitutions = {
|
|
shell = lib.getExe bash;
|
|
patchcil = lib.getExe patchcil;
|
|
};
|
|
meta.license = lib.licenses.mit;
|
|
} ./auto-patchcil.sh
|