mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
44 lines
798 B
Nix
44 lines
798 B
Nix
|
{
|
||
|
lib,
|
||
|
stdenvNoCC,
|
||
|
makeWrapper,
|
||
|
coreutils,
|
||
|
codeowners,
|
||
|
jq,
|
||
|
curl,
|
||
|
github-cli,
|
||
|
gitMinimal,
|
||
|
}:
|
||
|
stdenvNoCC.mkDerivation {
|
||
|
name = "request-reviews";
|
||
|
src = lib.fileset.toSource {
|
||
|
root = ./.;
|
||
|
fileset = lib.fileset.unions [
|
||
|
./get-reviewers.sh
|
||
|
./request-reviews.sh
|
||
|
./verify-base-branch.sh
|
||
|
./dev-branches.txt
|
||
|
];
|
||
|
};
|
||
|
nativeBuildInputs = [ makeWrapper ];
|
||
|
dontBuild = true;
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/bin
|
||
|
mv dev-branches.txt $out/bin
|
||
|
for bin in *.sh; do
|
||
|
mv "$bin" "$out/bin"
|
||
|
wrapProgram "$out/bin/$bin" \
|
||
|
--set PATH ${
|
||
|
lib.makeBinPath [
|
||
|
coreutils
|
||
|
codeowners
|
||
|
jq
|
||
|
curl
|
||
|
github-cli
|
||
|
gitMinimal
|
||
|
]
|
||
|
}
|
||
|
done
|
||
|
'';
|
||
|
}
|