2019-05-07 21:22:47 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
if [[ -z $(type -p git) ]]; then
|
|
|
|
echo "Git not installed; skipping flake tests"
|
|
|
|
exit 99
|
|
|
|
fi
|
|
|
|
|
2019-05-23 21:42:13 +00:00
|
|
|
export _NIX_FORCE_HTTP=1
|
|
|
|
|
2019-05-07 21:22:47 +00:00
|
|
|
clearStore
|
2019-05-23 21:42:13 +00:00
|
|
|
rm -rf $TEST_HOME/.cache
|
2019-05-07 21:22:47 +00:00
|
|
|
|
|
|
|
registry=$TEST_ROOT/registry.json
|
|
|
|
|
2019-05-01 09:38:48 +00:00
|
|
|
flake1Dir=$TEST_ROOT/flake1
|
|
|
|
flake2Dir=$TEST_ROOT/flake2
|
|
|
|
flake3Dir=$TEST_ROOT/flake3
|
2019-06-11 11:09:06 +00:00
|
|
|
flake4Dir=$TEST_ROOT/flake4
|
2019-06-19 12:48:40 +00:00
|
|
|
flake7Dir=$TEST_ROOT/flake7
|
2019-05-28 08:51:45 +00:00
|
|
|
nonFlakeDir=$TEST_ROOT/nonFlake
|
2019-05-07 21:22:47 +00:00
|
|
|
|
2019-06-19 12:48:40 +00:00
|
|
|
for repo in $flake1Dir $flake2Dir $flake3Dir $flake7Dir $nonFlakeDir; do
|
2019-05-23 21:42:13 +00:00
|
|
|
rm -rf $repo $repo.tmp
|
2019-05-07 21:22:47 +00:00
|
|
|
mkdir $repo
|
|
|
|
git -C $repo init
|
|
|
|
git -C $repo config user.email "foobar@example.com"
|
|
|
|
git -C $repo config user.name "Foobar"
|
|
|
|
done
|
|
|
|
|
2019-05-01 09:38:48 +00:00
|
|
|
cat > $flake1Dir/flake.nix <<EOF
|
2019-05-07 21:22:47 +00:00
|
|
|
{
|
2019-08-30 11:11:33 +00:00
|
|
|
edition = 201909;
|
2019-05-07 21:22:47 +00:00
|
|
|
|
|
|
|
description = "Bla bla";
|
|
|
|
|
2019-05-29 21:09:23 +00:00
|
|
|
outputs = inputs: rec {
|
Support non-x86_64-linux system types in flakes
A command like
$ nix run nixpkgs#hello
will now build the attribute 'packages.${system}.hello' rather than
'packages.hello'. Note that this does mean that the flake needs to
export an attribute for every system type it supports, and you can't
build on unsupported systems. So 'packages' typically looks like this:
packages = nixpkgs.lib.genAttrs ["x86_64-linux" "i686-linux"] (system: {
hello = ...;
});
The 'checks', 'defaultPackage', 'devShell', 'apps' and 'defaultApp'
outputs similarly are now attrsets that map system types to
derivations/apps. 'nix flake check' checks that the derivations for
all platforms evaluate correctly, but only builds the derivations in
'checks.${system}'.
Fixes #2861. (That issue also talks about access to ~/.config/nixpkgs
and --arg, but I think it's reasonable to say that flakes shouldn't
support those.)
The alternative to attribute selection is to pass the system type as
an argument to the flake's 'outputs' function, e.g. 'outputs = { self,
nixpkgs, system }: ...'. However, that approach would be at odds with
hermetic evaluation and make it impossible to enumerate the packages
provided by a flake.
2019-10-15 15:52:10 +00:00
|
|
|
packages.$system.foo = import ./simple.nix;
|
|
|
|
defaultPackage.$system = packages.$system.foo;
|
2019-10-15 17:53:29 +00:00
|
|
|
|
|
|
|
# To test "nix flake init".
|
2019-11-20 12:07:44 +00:00
|
|
|
legacyPackages.x86_64-linux.hello = import ./simple.nix;
|
2019-05-07 21:22:47 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
2019-05-01 09:38:48 +00:00
|
|
|
cp ./simple.nix ./simple.builder.sh ./config.nix $flake1Dir/
|
|
|
|
git -C $flake1Dir add flake.nix simple.nix simple.builder.sh config.nix
|
|
|
|
git -C $flake1Dir commit -m 'Initial'
|
2019-05-07 21:22:47 +00:00
|
|
|
|
2019-05-01 09:38:48 +00:00
|
|
|
cat > $flake2Dir/flake.nix <<EOF
|
2019-05-07 21:22:47 +00:00
|
|
|
{
|
2019-08-30 11:11:33 +00:00
|
|
|
edition = 201909;
|
2019-05-07 21:22:47 +00:00
|
|
|
|
|
|
|
description = "Fnord";
|
|
|
|
|
2019-08-30 11:11:33 +00:00
|
|
|
outputs = { self, flake1 }: rec {
|
Support non-x86_64-linux system types in flakes
A command like
$ nix run nixpkgs#hello
will now build the attribute 'packages.${system}.hello' rather than
'packages.hello'. Note that this does mean that the flake needs to
export an attribute for every system type it supports, and you can't
build on unsupported systems. So 'packages' typically looks like this:
packages = nixpkgs.lib.genAttrs ["x86_64-linux" "i686-linux"] (system: {
hello = ...;
});
The 'checks', 'defaultPackage', 'devShell', 'apps' and 'defaultApp'
outputs similarly are now attrsets that map system types to
derivations/apps. 'nix flake check' checks that the derivations for
all platforms evaluate correctly, but only builds the derivations in
'checks.${system}'.
Fixes #2861. (That issue also talks about access to ~/.config/nixpkgs
and --arg, but I think it's reasonable to say that flakes shouldn't
support those.)
The alternative to attribute selection is to pass the system type as
an argument to the flake's 'outputs' function, e.g. 'outputs = { self,
nixpkgs, system }: ...'. However, that approach would be at odds with
hermetic evaluation and make it impossible to enumerate the packages
provided by a flake.
2019-10-15 15:52:10 +00:00
|
|
|
packages.$system.bar = flake1.packages.$system.foo;
|
2019-05-07 21:22:47 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
2019-05-01 09:38:48 +00:00
|
|
|
git -C $flake2Dir add flake.nix
|
|
|
|
git -C $flake2Dir commit -m 'Initial'
|
2019-05-07 21:22:47 +00:00
|
|
|
|
2019-05-01 09:38:48 +00:00
|
|
|
cat > $flake3Dir/flake.nix <<EOF
|
2019-05-09 11:59:50 +00:00
|
|
|
{
|
2019-08-30 11:11:33 +00:00
|
|
|
edition = 201909;
|
2019-05-09 11:59:50 +00:00
|
|
|
|
|
|
|
description = "Fnord";
|
|
|
|
|
2019-08-30 11:11:33 +00:00
|
|
|
outputs = { self, flake2 }: rec {
|
Support non-x86_64-linux system types in flakes
A command like
$ nix run nixpkgs#hello
will now build the attribute 'packages.${system}.hello' rather than
'packages.hello'. Note that this does mean that the flake needs to
export an attribute for every system type it supports, and you can't
build on unsupported systems. So 'packages' typically looks like this:
packages = nixpkgs.lib.genAttrs ["x86_64-linux" "i686-linux"] (system: {
hello = ...;
});
The 'checks', 'defaultPackage', 'devShell', 'apps' and 'defaultApp'
outputs similarly are now attrsets that map system types to
derivations/apps. 'nix flake check' checks that the derivations for
all platforms evaluate correctly, but only builds the derivations in
'checks.${system}'.
Fixes #2861. (That issue also talks about access to ~/.config/nixpkgs
and --arg, but I think it's reasonable to say that flakes shouldn't
support those.)
The alternative to attribute selection is to pass the system type as
an argument to the flake's 'outputs' function, e.g. 'outputs = { self,
nixpkgs, system }: ...'. However, that approach would be at odds with
hermetic evaluation and make it impossible to enumerate the packages
provided by a flake.
2019-10-15 15:52:10 +00:00
|
|
|
packages.$system.xyzzy = flake2.packages.$system.bar;
|
2019-06-19 12:48:40 +00:00
|
|
|
|
|
|
|
checks = {
|
Support non-x86_64-linux system types in flakes
A command like
$ nix run nixpkgs#hello
will now build the attribute 'packages.${system}.hello' rather than
'packages.hello'. Note that this does mean that the flake needs to
export an attribute for every system type it supports, and you can't
build on unsupported systems. So 'packages' typically looks like this:
packages = nixpkgs.lib.genAttrs ["x86_64-linux" "i686-linux"] (system: {
hello = ...;
});
The 'checks', 'defaultPackage', 'devShell', 'apps' and 'defaultApp'
outputs similarly are now attrsets that map system types to
derivations/apps. 'nix flake check' checks that the derivations for
all platforms evaluate correctly, but only builds the derivations in
'checks.${system}'.
Fixes #2861. (That issue also talks about access to ~/.config/nixpkgs
and --arg, but I think it's reasonable to say that flakes shouldn't
support those.)
The alternative to attribute selection is to pass the system type as
an argument to the flake's 'outputs' function, e.g. 'outputs = { self,
nixpkgs, system }: ...'. However, that approach would be at odds with
hermetic evaluation and make it impossible to enumerate the packages
provided by a flake.
2019-10-15 15:52:10 +00:00
|
|
|
xyzzy = packages.$system.xyzzy;
|
2019-06-19 12:48:40 +00:00
|
|
|
};
|
2019-05-09 11:59:50 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
2019-05-01 09:38:48 +00:00
|
|
|
git -C $flake3Dir add flake.nix
|
|
|
|
git -C $flake3Dir commit -m 'Initial'
|
2019-05-09 11:59:50 +00:00
|
|
|
|
2019-05-28 08:51:45 +00:00
|
|
|
cat > $nonFlakeDir/README.md <<EOF
|
2019-06-04 18:56:13 +00:00
|
|
|
FNORD
|
2019-05-28 08:51:45 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
git -C $nonFlakeDir add README.md
|
|
|
|
git -C $nonFlakeDir commit -m 'Initial'
|
|
|
|
|
2019-05-07 21:22:47 +00:00
|
|
|
cat > $registry <<EOF
|
|
|
|
{
|
|
|
|
"flakes": {
|
|
|
|
"flake1": {
|
2019-10-08 14:30:04 +00:00
|
|
|
"url": "file://$flake1Dir"
|
2019-05-07 21:22:47 +00:00
|
|
|
},
|
|
|
|
"flake2": {
|
2019-10-08 14:30:04 +00:00
|
|
|
"url": "file://$flake2Dir"
|
2019-05-07 21:22:47 +00:00
|
|
|
},
|
|
|
|
"flake3": {
|
2019-10-08 14:30:04 +00:00
|
|
|
"url": "file://$flake3Dir"
|
2019-05-07 21:22:47 +00:00
|
|
|
},
|
2019-06-11 11:09:06 +00:00
|
|
|
"flake4": {
|
2019-10-08 14:30:04 +00:00
|
|
|
"url": "flake3"
|
2019-06-11 11:09:06 +00:00
|
|
|
},
|
2019-05-07 21:22:47 +00:00
|
|
|
"nixpkgs": {
|
2019-10-08 14:30:04 +00:00
|
|
|
"url": "flake1"
|
2019-05-07 21:22:47 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"version": 1
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# Test 'nix flake list'.
|
2019-06-21 17:04:58 +00:00
|
|
|
(( $(nix flake list --flake-registry $registry | wc -l) == 5 ))
|
2019-05-07 21:22:47 +00:00
|
|
|
|
|
|
|
# Test 'nix flake info'.
|
2019-10-08 14:30:04 +00:00
|
|
|
nix flake info --flake-registry $registry flake1 | grep -q 'URL: .*flake1.*'
|
2019-05-16 21:14:27 +00:00
|
|
|
|
|
|
|
# Test 'nix flake info' on a local flake.
|
2019-10-08 14:30:04 +00:00
|
|
|
(cd $flake1Dir && nix flake info --flake-registry $registry) | grep -q 'URL: .*flake1.*'
|
|
|
|
(cd $flake1Dir && nix flake info --flake-registry $registry .) | grep -q 'URL: .*flake1.*'
|
|
|
|
nix flake info --flake-registry $registry $flake1Dir | grep -q 'URL: .*flake1.*'
|
2019-05-07 21:22:47 +00:00
|
|
|
|
|
|
|
# Test 'nix flake info --json'.
|
|
|
|
json=$(nix flake info --flake-registry $registry flake1 --json | jq .)
|
|
|
|
[[ $(echo "$json" | jq -r .description) = 'Bla bla' ]]
|
|
|
|
[[ -d $(echo "$json" | jq -r .path) ]]
|
2019-05-28 18:34:02 +00:00
|
|
|
[[ $(echo "$json" | jq -r .lastModified) = $(git -C $flake1Dir log -n1 --format=%ct) ]]
|
2019-05-07 21:22:47 +00:00
|
|
|
|
|
|
|
# Test 'nix build' on a flake.
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry flake1#foo
|
2019-05-07 21:22:47 +00:00
|
|
|
[[ -e $TEST_ROOT/result/hello ]]
|
|
|
|
|
|
|
|
# Test defaultPackage.
|
2019-05-31 18:53:23 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry flake1
|
2019-05-07 21:22:47 +00:00
|
|
|
[[ -e $TEST_ROOT/result/hello ]]
|
|
|
|
|
2019-05-31 20:17:39 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry $flake1Dir
|
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry file://$flake1Dir
|
|
|
|
|
2019-06-21 13:29:05 +00:00
|
|
|
# CHeck that store symlinks inside a flake are not interpreted as flakes.
|
|
|
|
nix build -o $flake1Dir/result --flake-registry $registry file://$flake1Dir
|
|
|
|
nix path-info $flake1Dir/result
|
|
|
|
|
2019-05-07 21:22:47 +00:00
|
|
|
# Building a flake with an unlocked dependency should fail in pure mode.
|
2019-05-14 09:34:45 +00:00
|
|
|
(! nix eval "(builtins.getFlake "$flake2Dir")")
|
2019-05-07 21:22:47 +00:00
|
|
|
|
|
|
|
# But should succeed in impure mode.
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry flake2#bar --impure
|
2019-05-07 21:22:47 +00:00
|
|
|
|
|
|
|
# Test automatic lock file generation.
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry $flake2Dir#bar
|
2019-05-01 09:38:48 +00:00
|
|
|
[[ -e $flake2Dir/flake.lock ]]
|
|
|
|
git -C $flake2Dir commit flake.lock -m 'Add flake.lock'
|
2019-05-07 21:22:47 +00:00
|
|
|
|
2019-05-09 11:55:33 +00:00
|
|
|
# Rerunning the build should not change the lockfile.
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry $flake2Dir#bar
|
2019-05-14 09:34:45 +00:00
|
|
|
[[ -z $(git -C $flake2Dir diff master) ]]
|
2019-05-09 11:55:33 +00:00
|
|
|
|
2019-06-21 16:34:43 +00:00
|
|
|
# Building with a lockfile should not require a fetch of the registry.
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry file:///no-registry.json $flake2Dir#bar --tarball-ttl 0
|
2019-06-21 16:34:43 +00:00
|
|
|
|
2019-06-19 12:48:40 +00:00
|
|
|
# Updating the flake should not change the lockfile.
|
|
|
|
nix flake update --flake-registry $registry $flake2Dir
|
|
|
|
[[ -z $(git -C $flake2Dir diff master) ]]
|
|
|
|
|
2019-05-07 21:22:47 +00:00
|
|
|
# Now we should be able to build the flake in pure mode.
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry flake2#bar
|
2019-05-07 21:22:47 +00:00
|
|
|
|
|
|
|
# Or without a registry.
|
2019-05-23 14:36:12 +00:00
|
|
|
# FIXME: shouldn't need '--flake-registry /no-registry'?
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry /no-registry file://$flake2Dir#bar --tarball-ttl 0
|
2019-05-09 11:59:50 +00:00
|
|
|
|
|
|
|
# Test whether indirect dependencies work.
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry $flake3Dir#xyzzy
|
2019-05-14 09:34:45 +00:00
|
|
|
|
2019-05-22 12:31:40 +00:00
|
|
|
# Add dependency to flake3.
|
2019-05-14 09:34:45 +00:00
|
|
|
rm $flake3Dir/flake.nix
|
|
|
|
|
|
|
|
cat > $flake3Dir/flake.nix <<EOF
|
|
|
|
{
|
2019-08-30 11:11:33 +00:00
|
|
|
edition = 201909;
|
2019-05-14 09:34:45 +00:00
|
|
|
|
|
|
|
description = "Fnord";
|
|
|
|
|
2019-08-30 11:11:33 +00:00
|
|
|
outputs = { self, flake1, flake2 }: rec {
|
Support non-x86_64-linux system types in flakes
A command like
$ nix run nixpkgs#hello
will now build the attribute 'packages.${system}.hello' rather than
'packages.hello'. Note that this does mean that the flake needs to
export an attribute for every system type it supports, and you can't
build on unsupported systems. So 'packages' typically looks like this:
packages = nixpkgs.lib.genAttrs ["x86_64-linux" "i686-linux"] (system: {
hello = ...;
});
The 'checks', 'defaultPackage', 'devShell', 'apps' and 'defaultApp'
outputs similarly are now attrsets that map system types to
derivations/apps. 'nix flake check' checks that the derivations for
all platforms evaluate correctly, but only builds the derivations in
'checks.${system}'.
Fixes #2861. (That issue also talks about access to ~/.config/nixpkgs
and --arg, but I think it's reasonable to say that flakes shouldn't
support those.)
The alternative to attribute selection is to pass the system type as
an argument to the flake's 'outputs' function, e.g. 'outputs = { self,
nixpkgs, system }: ...'. However, that approach would be at odds with
hermetic evaluation and make it impossible to enumerate the packages
provided by a flake.
2019-10-15 15:52:10 +00:00
|
|
|
packages.$system.xyzzy = flake2.packages.$system.bar;
|
|
|
|
packages.$system."sth sth" = flake1.packages.$system.foo;
|
2019-05-14 09:34:45 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
git -C $flake3Dir add flake.nix
|
|
|
|
git -C $flake3Dir commit -m 'Update flake.nix'
|
|
|
|
|
|
|
|
# Check whether `nix build` works with an incomplete lockfile
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry $flake3Dir#"sth sth"
|
2019-05-14 09:34:45 +00:00
|
|
|
|
|
|
|
# Check whether it saved the lockfile
|
|
|
|
[[ ! (-z $(git -C $flake3Dir diff master)) ]]
|
2019-05-22 12:31:40 +00:00
|
|
|
|
2019-07-12 12:37:45 +00:00
|
|
|
git -C $flake3Dir add flake.lock
|
|
|
|
|
2019-06-04 17:10:35 +00:00
|
|
|
git -C $flake3Dir commit -m 'Add lockfile'
|
|
|
|
|
2019-07-12 12:37:45 +00:00
|
|
|
# Unsupported editions should be an error.
|
2019-08-30 11:11:33 +00:00
|
|
|
sed -i $flake3Dir/flake.nix -e s/201909/201912/
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry $flake3Dir#sth 2>&1 | grep 'unsupported edition'
|
2019-05-22 21:52:29 +00:00
|
|
|
|
|
|
|
# Test whether registry caching works.
|
|
|
|
nix flake list --flake-registry file://$registry | grep -q flake3
|
|
|
|
mv $registry $registry.tmp
|
|
|
|
nix flake list --flake-registry file://$registry --tarball-ttl 0 | grep -q flake3
|
2019-05-23 21:42:13 +00:00
|
|
|
mv $registry.tmp $registry
|
|
|
|
|
|
|
|
# Test whether flakes are registered as GC roots for offline use.
|
2019-06-04 17:45:16 +00:00
|
|
|
# FIXME: use tarballs rather than git.
|
2019-05-23 21:42:13 +00:00
|
|
|
rm -rf $TEST_HOME/.cache
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry file://$registry file://$flake2Dir#bar
|
2019-05-23 21:42:13 +00:00
|
|
|
mv $flake1Dir $flake1Dir.tmp
|
|
|
|
mv $flake2Dir $flake2Dir.tmp
|
|
|
|
nix-store --gc
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry file://$registry file://$flake2Dir#bar
|
|
|
|
nix build -o $TEST_ROOT/result --flake-registry file://$registry file://$flake2Dir#bar --tarball-ttl 0
|
2019-05-23 21:42:13 +00:00
|
|
|
mv $flake1Dir.tmp $flake1Dir
|
|
|
|
mv $flake2Dir.tmp $flake2Dir
|
2019-05-28 08:51:45 +00:00
|
|
|
|
2019-05-29 21:09:23 +00:00
|
|
|
# Add nonFlakeInputs to flake3.
|
2019-05-28 08:51:45 +00:00
|
|
|
rm $flake3Dir/flake.nix
|
|
|
|
|
|
|
|
cat > $flake3Dir/flake.nix <<EOF
|
|
|
|
{
|
2019-08-30 11:11:33 +00:00
|
|
|
edition = 201909;
|
2019-05-28 08:51:45 +00:00
|
|
|
|
2019-08-30 14:27:51 +00:00
|
|
|
inputs = {
|
|
|
|
flake1 = {};
|
|
|
|
flake2 = {};
|
|
|
|
nonFlake = {
|
2019-10-08 14:30:04 +00:00
|
|
|
url = "$nonFlakeDir";
|
2019-08-30 14:27:51 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
2019-05-28 08:51:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
description = "Fnord";
|
|
|
|
|
2019-05-29 21:09:23 +00:00
|
|
|
outputs = inputs: rec {
|
Support non-x86_64-linux system types in flakes
A command like
$ nix run nixpkgs#hello
will now build the attribute 'packages.${system}.hello' rather than
'packages.hello'. Note that this does mean that the flake needs to
export an attribute for every system type it supports, and you can't
build on unsupported systems. So 'packages' typically looks like this:
packages = nixpkgs.lib.genAttrs ["x86_64-linux" "i686-linux"] (system: {
hello = ...;
});
The 'checks', 'defaultPackage', 'devShell', 'apps' and 'defaultApp'
outputs similarly are now attrsets that map system types to
derivations/apps. 'nix flake check' checks that the derivations for
all platforms evaluate correctly, but only builds the derivations in
'checks.${system}'.
Fixes #2861. (That issue also talks about access to ~/.config/nixpkgs
and --arg, but I think it's reasonable to say that flakes shouldn't
support those.)
The alternative to attribute selection is to pass the system type as
an argument to the flake's 'outputs' function, e.g. 'outputs = { self,
nixpkgs, system }: ...'. However, that approach would be at odds with
hermetic evaluation and make it impossible to enumerate the packages
provided by a flake.
2019-10-15 15:52:10 +00:00
|
|
|
packages.$system.xyzzy = inputs.flake2.packages.$system.bar;
|
|
|
|
packages.$system.sth = inputs.flake1.packages.$system.foo;
|
|
|
|
packages.$system.fnord =
|
2019-06-04 18:56:13 +00:00
|
|
|
with import ./config.nix;
|
|
|
|
mkDerivation {
|
|
|
|
inherit system;
|
|
|
|
name = "fnord";
|
|
|
|
buildCommand = ''
|
|
|
|
cat \${inputs.nonFlake}/README.md > \$out
|
|
|
|
'';
|
|
|
|
};
|
2019-05-28 08:51:45 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
2019-06-04 18:56:13 +00:00
|
|
|
cp ./config.nix $flake3Dir
|
|
|
|
|
|
|
|
git -C $flake3Dir add flake.nix config.nix
|
2019-05-29 21:09:23 +00:00
|
|
|
git -C $flake3Dir commit -m 'Add nonFlakeInputs'
|
2019-05-28 08:51:45 +00:00
|
|
|
|
2019-06-04 18:56:13 +00:00
|
|
|
# Check whether `nix build` works with a lockfile which is missing a
|
|
|
|
# nonFlakeInputs.
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry $flake3Dir#sth
|
2019-06-04 17:10:35 +00:00
|
|
|
|
2019-07-12 12:37:45 +00:00
|
|
|
git -C $flake3Dir add flake.lock
|
|
|
|
|
2019-06-04 18:33:49 +00:00
|
|
|
git -C $flake3Dir commit -m 'Update nonFlakeInputs'
|
|
|
|
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry flake3#fnord
|
2019-06-04 18:56:13 +00:00
|
|
|
[[ $(cat $TEST_ROOT/result) = FNORD ]]
|
|
|
|
|
2019-09-20 14:01:40 +00:00
|
|
|
# Check whether flake input fetching is lazy: flake3#sth does not
|
2019-06-04 17:10:35 +00:00
|
|
|
# depend on flake2, so this shouldn't fail.
|
|
|
|
rm -rf $TEST_HOME/.cache
|
|
|
|
clearStore
|
|
|
|
mv $flake2Dir $flake2Dir.tmp
|
2019-06-04 18:56:13 +00:00
|
|
|
mv $nonFlakeDir $nonFlakeDir.tmp
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry flake3#sth
|
|
|
|
(! nix build -o $TEST_ROOT/result --flake-registry $registry flake3#xyzzy)
|
|
|
|
(! nix build -o $TEST_ROOT/result --flake-registry $registry flake3#fnord)
|
2019-06-04 17:10:35 +00:00
|
|
|
mv $flake2Dir.tmp $flake2Dir
|
2019-06-04 18:56:13 +00:00
|
|
|
mv $nonFlakeDir.tmp $nonFlakeDir
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry flake3#xyzzy flake3#fnord
|
2019-06-11 11:09:06 +00:00
|
|
|
|
|
|
|
# Test doing multiple `lookupFlake`s
|
2019-09-20 14:01:40 +00:00
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry flake4#xyzzy
|
2019-06-11 11:09:06 +00:00
|
|
|
|
|
|
|
# Make branch "removeXyzzy" where flake3 doesn't have xyzzy anymore
|
|
|
|
git -C $flake3Dir checkout -b removeXyzzy
|
|
|
|
rm $flake3Dir/flake.nix
|
|
|
|
|
|
|
|
cat > $flake3Dir/flake.nix <<EOF
|
|
|
|
{
|
2019-08-30 11:11:33 +00:00
|
|
|
edition = 201909;
|
2019-06-11 11:09:06 +00:00
|
|
|
|
2019-08-30 14:27:51 +00:00
|
|
|
inputs = {
|
|
|
|
nonFlake = {
|
2019-10-08 14:30:04 +00:00
|
|
|
url = "$nonFlakeDir";
|
2019-08-30 14:27:51 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
2019-06-11 11:09:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
description = "Fnord";
|
|
|
|
|
2019-08-30 14:27:51 +00:00
|
|
|
outputs = { self, flake1, flake2, nonFlake }: rec {
|
Support non-x86_64-linux system types in flakes
A command like
$ nix run nixpkgs#hello
will now build the attribute 'packages.${system}.hello' rather than
'packages.hello'. Note that this does mean that the flake needs to
export an attribute for every system type it supports, and you can't
build on unsupported systems. So 'packages' typically looks like this:
packages = nixpkgs.lib.genAttrs ["x86_64-linux" "i686-linux"] (system: {
hello = ...;
});
The 'checks', 'defaultPackage', 'devShell', 'apps' and 'defaultApp'
outputs similarly are now attrsets that map system types to
derivations/apps. 'nix flake check' checks that the derivations for
all platforms evaluate correctly, but only builds the derivations in
'checks.${system}'.
Fixes #2861. (That issue also talks about access to ~/.config/nixpkgs
and --arg, but I think it's reasonable to say that flakes shouldn't
support those.)
The alternative to attribute selection is to pass the system type as
an argument to the flake's 'outputs' function, e.g. 'outputs = { self,
nixpkgs, system }: ...'. However, that approach would be at odds with
hermetic evaluation and make it impossible to enumerate the packages
provided by a flake.
2019-10-15 15:52:10 +00:00
|
|
|
packages.$system.sth = flake1.packages.$system.foo;
|
|
|
|
packages.$system.fnord =
|
2019-06-11 11:09:06 +00:00
|
|
|
with import ./config.nix;
|
|
|
|
mkDerivation {
|
|
|
|
inherit system;
|
|
|
|
name = "fnord";
|
|
|
|
buildCommand = ''
|
2019-08-30 14:27:51 +00:00
|
|
|
cat \${nonFlake}/README.md > \$out
|
2019-06-11 11:09:06 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
git -C $flake3Dir add flake.nix
|
|
|
|
git -C $flake3Dir commit -m 'Remove packages.xyzzy'
|
|
|
|
git -C $flake3Dir checkout master
|
|
|
|
|
|
|
|
# Test whether fuzzy-matching works for IsAlias
|
2019-09-20 14:01:40 +00:00
|
|
|
(! nix build -o $TEST_ROOT/result --flake-registry $registry flake4/removeXyzzy#xyzzy)
|
2019-06-11 11:09:06 +00:00
|
|
|
|
|
|
|
# Test whether fuzzy-matching works for IsGit
|
2019-09-20 14:01:40 +00:00
|
|
|
(! nix build -o $TEST_ROOT/result --flake-registry $registry flake4/removeXyzzy#xyzzy)
|
|
|
|
nix build -o $TEST_ROOT/result --flake-registry $registry flake4/removeXyzzy#sth
|
2019-06-19 12:48:40 +00:00
|
|
|
|
|
|
|
# Testing the nix CLI
|
|
|
|
nix flake add --flake-registry $registry flake1 flake3
|
2019-06-21 17:04:58 +00:00
|
|
|
(( $(nix flake list --flake-registry $registry | wc -l) == 6 ))
|
2019-06-19 12:48:40 +00:00
|
|
|
nix flake pin --flake-registry $registry flake1
|
|
|
|
(( $(nix flake list --flake-registry $registry | wc -l) == 6 ))
|
2019-06-21 17:04:58 +00:00
|
|
|
nix flake remove --flake-registry $registry flake1
|
|
|
|
(( $(nix flake list --flake-registry $registry | wc -l) == 5 ))
|
2019-06-19 12:48:40 +00:00
|
|
|
|
2019-10-15 17:53:29 +00:00
|
|
|
# Test 'nix flake init'.
|
2019-06-19 12:48:40 +00:00
|
|
|
(cd $flake7Dir && nix flake init)
|
2019-10-15 17:53:29 +00:00
|
|
|
git -C $flake7Dir add flake.nix
|
|
|
|
nix flake --flake-registry $registry check $flake7Dir
|
2019-06-19 12:48:40 +00:00
|
|
|
|
2019-08-30 11:11:33 +00:00
|
|
|
rm -rf $TEST_ROOT/flake1-v2
|
2019-06-19 12:48:40 +00:00
|
|
|
nix flake clone --flake-registry $registry flake1 $TEST_ROOT/flake1-v2
|
2019-09-10 14:03:03 +00:00
|
|
|
|
|
|
|
# More 'nix flake check' tests.
|
|
|
|
cat > $flake3Dir/flake.nix <<EOF
|
|
|
|
{
|
|
|
|
edition = 201909;
|
|
|
|
|
|
|
|
outputs = { flake1, self }: {
|
|
|
|
overlay = final: prev: {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
nix flake check --flake-registry $registry $flake3Dir
|
|
|
|
|
|
|
|
cat > $flake3Dir/flake.nix <<EOF
|
|
|
|
{
|
|
|
|
edition = 201909;
|
|
|
|
|
|
|
|
outputs = { flake1, self }: {
|
|
|
|
overlay = finalll: prev: {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
(! nix flake check --flake-registry $registry $flake3Dir)
|
|
|
|
|
|
|
|
cat > $flake3Dir/flake.nix <<EOF
|
|
|
|
{
|
|
|
|
edition = 201909;
|
|
|
|
|
|
|
|
outputs = { flake1, self }: {
|
|
|
|
nixosModules.foo = {
|
|
|
|
a.b.c = 123;
|
|
|
|
foo = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
nix flake check --flake-registry $registry $flake3Dir
|
|
|
|
|
|
|
|
cat > $flake3Dir/flake.nix <<EOF
|
|
|
|
{
|
|
|
|
edition = 201909;
|
|
|
|
|
|
|
|
outputs = { flake1, self }: {
|
|
|
|
nixosModules.foo = {
|
|
|
|
a.b.c = 123;
|
|
|
|
foo = assert false; true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
(! nix flake check --flake-registry $registry $flake3Dir)
|
|
|
|
|
|
|
|
cat > $flake3Dir/flake.nix <<EOF
|
|
|
|
{
|
|
|
|
edition = 201909;
|
|
|
|
|
|
|
|
outputs = { flake1, self }: {
|
|
|
|
nixosModule = { config, pkgs, ... }: {
|
|
|
|
a.b.c = 123;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
nix flake check --flake-registry $registry $flake3Dir
|
|
|
|
|
|
|
|
cat > $flake3Dir/flake.nix <<EOF
|
|
|
|
{
|
|
|
|
edition = 201909;
|
|
|
|
|
|
|
|
outputs = { flake1, self }: {
|
|
|
|
nixosModule = { config, pkgs }: {
|
|
|
|
a.b.c = 123;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
(! nix flake check --flake-registry $registry $flake3Dir)
|