mirror of
https://github.com/NixOS/nix.git
synced 2025-02-18 09:52:31 +00:00
12 lines
97 B
Nix
12 lines
97 B
Nix
let {
|
|
x =
|
|
{gcc}:
|
|
{
|
|
inherit gcc;
|
|
};
|
|
|
|
body = ({
|
|
inherit gcc;
|
|
}).gcc;
|
|
}
|