nixpkgs/nixos/tests/nix-required-mounts/test-structured-attrs-empty.nix
Wolfgang Walther c319ac6571
various: fix eval
runCommandNoCC has been renamed to runCommand and the former has
recently been turned into a throw.
2025-10-28 18:17:14 +01:00

8 lines
153 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.runCommand "nix-required-mounts-structured-attrs-no-features" { __structuredAttrs = true; } ''
touch $out
''