forked from lix-project/hydra
18 lines
442 B
Nix
18 lines
442 B
Nix
|
with import ./config.nix;
|
||
|
{
|
||
|
full-of-meta =
|
||
|
mkDerivation {
|
||
|
name = "full-of-meta";
|
||
|
builder = ./empty-dir-builder.sh;
|
||
|
|
||
|
meta = {
|
||
|
description = "This is the description of the job.";
|
||
|
license = [ { shortName = "MIT"; } "BSD" ];
|
||
|
homepage = "https://example.com/";
|
||
|
maintainers = [ "alice@example.com" { email = "bob@not.found"; } ];
|
||
|
|
||
|
outPath = "${placeholder "out"}";
|
||
|
};
|
||
|
};
|
||
|
}
|