hydra/t/jobs/notifications.nix

15 lines
275 B
Nix
Raw Normal View History

with import ./config.nix;
{
canbesubstituted =
mkDerivation {
name = "can-be-substituted";
builder = ./empty-dir-builder.sh;
};
unsubstitutable =
mkDerivation {
name = "unsubstitutable";
builder = ./empty-dir-builder.sh;
};
}