mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 09:43:30 +01:00
runCommandNoCC has been renamed to runCommand and the former has recently been turned into a throw.
8 lines
153 B
Nix
8 lines
153 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
pkgs.runCommand "nix-required-mounts-structured-attrs-no-features" { __structuredAttrs = true; } ''
|
|
touch $out
|
|
''
|