forked from lix-project/lix
12 lines
97 B
Nix
12 lines
97 B
Nix
|
let {
|
||
|
x =
|
||
|
{gcc}:
|
||
|
{
|
||
|
inherit gcc;
|
||
|
};
|
||
|
|
||
|
body = ({
|
||
|
inherit gcc;
|
||
|
}).gcc;
|
||
|
}
|