mirror of
https://github.com/hercules-ci/arion.git
synced 2024-11-23 00:32:12 +03:00
21 lines
515 B
Nix
21 lines
515 B
Nix
{ stdenv, lib
|
|
, coreutils, docker_compose, jq
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "arion";
|
|
src = ./src;
|
|
unpackPhase = "";
|
|
buildPhase = "";
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/share/arion
|
|
cp -a nix $out/share/arion/
|
|
cp -a arion-image $out/share/arion/
|
|
substitute arion $out/bin/arion \
|
|
--subst-var-by path ${lib.makeBinPath [jq coreutils docker_compose]} \
|
|
--subst-var-by nix_dir $out/share/arion/nix \
|
|
;
|
|
chmod a+x $out/bin/arion
|
|
'';
|
|
}
|