How long do we have the value printer already? It's time to stop concatenating strings like it's 2005 Change-Id: I3f5074de2439a1ad78af94de877bb141bc9f1d82
35 lines
592 B
Nix
35 lines
592 B
Nix
let
|
|
|
|
pkgs_ = with pkgs; {
|
|
a = derivation {
|
|
name = "a";
|
|
system = builtins.currentSystem;
|
|
builder = "/bin/sh";
|
|
args = [ "-c" "touch $out" ];
|
|
inherit b;
|
|
};
|
|
|
|
b = derivation {
|
|
name = "b";
|
|
system = builtins.currentSystem;
|
|
builder = "/bin/sh";
|
|
args = [ "-c" "touch $out" ];
|
|
inherit a;
|
|
};
|
|
|
|
c = b;
|
|
};
|
|
|
|
packageOverrides = pkgs: with pkgs; {
|
|
b = derivation (b.drvAttrs // { name = "${b.name}-overridden"; });
|
|
};
|
|
|
|
pkgs = pkgs_ // (packageOverrides pkgs_);
|
|
|
|
in
|
|
[
|
|
pkgs.a.b.name
|
|
pkgs.c.name
|
|
pkgs.b.a.name
|
|
]
|