nixpkgs/pkgs/common-updater/scripts.nix

19 lines
429 B
Nix
Raw Normal View History

2021-01-24 00:40:18 +00:00
{ lib, stdenv, makeWrapper, coreutils, gnused, gnugrep, diffutils, nix, git, jq }:
stdenv.mkDerivation {
name = "common-updater-scripts";
nativeBuildInputs = [ makeWrapper ];
2019-06-19 15:45:34 +00:00
dontUnpack = true;
installPhase = ''
mkdir -p $out/bin
cp ${./scripts}/* $out/bin
for f in $out/bin/*; do
2021-01-24 00:40:18 +00:00
wrapProgram $f --prefix PATH : ${lib.makeBinPath [ coreutils gnused gnugrep nix diffutils git jq ]}
done
'';
}