forked from lix-project/lix
eldritch horrors
180984178d
nix shell: reflect command line order in PATH order
(cherry picked from commit b91c935c2faf08ced2c763dcd2a831f26d84fa86)
Change-Id: If16c120bb74857c2817366e74e5b0877eb997260
43 lines
860 B
Nix
43 lines
860 B
Nix
with import ./config.nix;
|
|
|
|
{
|
|
hello = mkDerivation {
|
|
name = "hello";
|
|
outputs = [ "out" "dev" ];
|
|
meta.outputsToInstall = [ "out" ];
|
|
buildCommand =
|
|
''
|
|
mkdir -p $out/bin $dev/bin
|
|
|
|
cat > $out/bin/hello <<EOF
|
|
#! ${shell}
|
|
who=\$1
|
|
echo "Hello \''${who:-World} from $out/bin/hello"
|
|
EOF
|
|
chmod +x $out/bin/hello
|
|
|
|
cat > $dev/bin/hello2 <<EOF
|
|
#! ${shell}
|
|
echo "Hello2"
|
|
EOF
|
|
chmod +x $dev/bin/hello2
|
|
'';
|
|
};
|
|
|
|
salve-mundi = mkDerivation {
|
|
name = "salve-mundi";
|
|
outputs = [ "out" ];
|
|
meta.outputsToInstall = [ "out" ];
|
|
buildCommand =
|
|
''
|
|
mkdir -p $out/bin
|
|
|
|
cat > $out/bin/hello <<EOF
|
|
#! ${shell}
|
|
echo "Salve Mundi from $out/bin/hello"
|
|
EOF
|
|
chmod +x $out/bin/hello
|
|
'';
|
|
};
|
|
}
|