mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
0817c307dc
svn path=/nixos/trunk/; revision=7155
8 lines
203 B
Nix
8 lines
203 B
Nix
{stdenv}: job:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (job) name job;
|
|
builder = builtins.toFile "builder.sh"
|
|
"source $stdenv/setup; ensureDir $out/etc/event.d; echo \"$job\" > $out/etc/event.d/$name";
|
|
}
|