d79d934d85
svn path=/nixos/trunk/; revision=20072
24 lines
679 B
Nix
24 lines
679 B
Nix
{ nixpkgs ? ../../nixpkgs
|
|
, services ? ../../services
|
|
, system ? builtins.currentSystem
|
|
}:
|
|
|
|
let
|
|
|
|
testLib =
|
|
(import ../lib/build-vms.nix { inherit nixpkgs services system; }) //
|
|
(import ../lib/testing.nix { inherit nixpkgs services system; });
|
|
|
|
in with testLib;
|
|
|
|
{
|
|
firefox = apply (import ./firefox.nix);
|
|
installer = pkgs.lib.mapAttrs (name: complete) (call (import ./installer.nix));
|
|
kde4 = apply (import ./kde4.nix);
|
|
login = apply (import ./login.nix);
|
|
portmap = apply (import ./portmap.nix);
|
|
proxy = apply (import ./proxy.nix);
|
|
quake3 = apply (import ./quake3.nix);
|
|
subversion = apply (import ./subversion.nix);
|
|
trac = apply (import ./trac.nix);
|
|
}
|