lix/tests/functional/flakes/run.sh

29 lines
848 B
Bash
Raw Normal View History

2022-07-13 12:09:35 +00:00
source ../common.sh
clearStore
rm -rf $TEST_HOME/.cache $TEST_HOME/.config $TEST_HOME/.local
2022-07-13 12:09:35 +00:00
cp ../shell-hello.nix ../config.nix $TEST_HOME
cd $TEST_HOME
cat <<EOF > flake.nix
{
outputs = {self}: {
2022-04-19 10:09:12 +00:00
packages.$system.pkgAsPkg = (import ./shell-hello.nix).hello;
packages.$system.appAsApp = self.packages.$system.appAsApp;
2022-04-19 10:09:12 +00:00
apps.$system.pkgAsApp = self.packages.$system.pkgAsPkg;
apps.$system.appAsApp = {
type = "app";
program = "\${(import ./shell-hello.nix).hello}/bin/hello";
};
};
}
EOF
2022-04-19 10:09:12 +00:00
nix run --no-write-lock-file .#appAsApp
nix run --no-write-lock-file .#pkgAsPkg
2022-04-19 10:09:12 +00:00
! nix run --no-write-lock-file .#pkgAsApp || fail "'nix run' shouldnt accept an 'app' defined under 'packages'"
! nix run --no-write-lock-file .#appAsPkg || fail "elements of 'apps' should be of type 'app'"
clearStore