bscpkgs/garlic/stages/script.nix
Rodrigo Arias Mallo 2b9c3da911 Add script stage
2021-01-12 18:19:49 +01:00

24 lines
257 B
Nix

{
stdenv
}:
{
script
, shell ? "/bin/sh"
}:
stdenv.mkDerivation {
name = "script";
preferLocalBuild = true;
phases = [ "installPhase" ];
installPhase = ''
cat > $out <<'EOF'
#!${shell}
${script}
EOF
chmod +x $out
'';
}