What's the structure of a derivation
{
"/nix/store/<cryptographic hash>-<name>.drv": {
"outputs": {
"out": {
"path": "/nix/store/<cryptographic hash>-<name>"
}
},
"inputSrcs": [ <paths of input sources> ],
"inputDrvs": {},
"platform": "<platform>",
"builder": "<path/to/builder>",
"args": [],
"env": {
"builder": "mybuilder",
"name": "myname",
"out": "/nix/store/40s0qmrfb45vlh6610rk29ym318dswdr-myname",
"system": "mysystem"
}
}
}