forked from lix-project/lix
2b4b0658fa
evaluation fails: error: impossible: undefined variable `gcc'
12 lines
97 B
Nix
12 lines
97 B
Nix
let {
|
|
x =
|
|
{gcc}:
|
|
{
|
|
inherit gcc;
|
|
};
|
|
|
|
body = ({
|
|
inherit gcc;
|
|
}).gcc;
|
|
}
|