mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 17:03:56 -05:00
7 lines
115 B
Nix
7 lines
115 B
Nix
{ callPackage }:
|
|
{
|
|
callPackage = f: x: callPackage f ({ bar = "foo"; } // x);
|
|
args = {
|
|
foo = "bar";
|
|
};
|
|
}
|