* Start putting build results in a database.

This commit is contained in:
Eelco Dolstra
2008-10-10 16:05:05 +00:00
commit ff6021450a
3 changed files with 65 additions and 0 deletions

17
test.nix Normal file
View File

@@ -0,0 +1,17 @@
let
pkgs = import (builtins.getEnv "NIXPKGS_ALL") {};
pkgs64 = import (builtins.getEnv "NIXPKGS_ALL") {system = "x86_64-linux";};
in
{
job1 = pkgs.hello;
job1_64 = pkgs64.hello;
job2 = pkgs.aterm;
}