mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 22:04:20 +00:00
65e7143039
This is a rare case of a Nix file actually ending up in the build result. We reformat this now, causing a rebuild, so that we won't cause a rebuild in the treewide reformatting PR.
14 lines
235 B
Nix
14 lines
235 B
Nix
let
|
|
pkgs = import <nixpkgs> { };
|
|
in
|
|
pkgs.runCommand "diagnostics-sandbox"
|
|
{
|
|
__noChroot = true;
|
|
}
|
|
''
|
|
set -x
|
|
# no cache: ${toString builtins.currentTime}
|
|
test -d "$(dirname "$out")/../var/nix"
|
|
touch $out
|
|
''
|