14 lines
272 B
Nix
14 lines
272 B
Nix
|
{
|
||
|
pkgs ? import <nixpkgs> { },
|
||
|
feature,
|
||
|
}:
|
||
|
|
||
|
pkgs.runCommandNoCC "${feature}-not-present" { } ''
|
||
|
if [[ -e /${feature}-files ]]; then
|
||
|
echo "No ${feature} in requiredSystemFeatures, but /${feature}-files was mounted anyway"
|
||
|
exit 1
|
||
|
else
|
||
|
touch $out
|
||
|
fi
|
||
|
''
|