mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 10:46:15 +02:00
9d2ed0a7d3
This should make `_NIX_TEST_ACCEPT=1` work again, fixing #11369. Progress on #2503
21 lines
514 B
Nix
21 lines
514 B
Nix
with import "${builtins.getEnv "_NIX_TEST_BUILD_DIR"}/config.nix";
|
|
let
|
|
dep = mkDerivation {
|
|
name = "dep";
|
|
buildCommand = ''
|
|
mkdir $out; echo bla > $out/bla
|
|
'';
|
|
};
|
|
inherit (import ./shell.nix { inNixShell = true; }) stdenv;
|
|
in
|
|
mkDerivation {
|
|
name = "structured2";
|
|
__structuredAttrs = true;
|
|
inherit stdenv;
|
|
outputs = [ "out" "dev" ];
|
|
my.list = [ "a" "b" "c" ];
|
|
exportReferencesGraph.refs = [ dep ];
|
|
buildCommand = ''
|
|
touch ''${outputs[out]}; touch ''${outputs[dev]}
|
|
'';
|
|
}
|