2010-01-05 11:18:43 +00:00
|
|
|
{ nixpkgs ? ../../nixpkgs
|
|
|
|
, services ? ../../services
|
|
|
|
, system ? builtins.currentSystem
|
|
|
|
}:
|
|
|
|
|
2010-03-09 10:14:45 +00:00
|
|
|
with import ../lib/testing.nix { inherit nixpkgs services system; };
|
2010-01-05 11:18:43 +00:00
|
|
|
|
|
|
|
{
|
2010-05-20 14:56:04 +00:00
|
|
|
bittorrent = apply (import ./bittorrent.nix);
|
2010-01-05 14:12:51 +00:00
|
|
|
firefox = apply (import ./firefox.nix);
|
2010-01-07 13:19:38 +00:00
|
|
|
installer = pkgs.lib.mapAttrs (name: complete) (call (import ./installer.nix));
|
2010-01-05 23:59:29 +00:00
|
|
|
kde4 = apply (import ./kde4.nix);
|
2010-02-06 13:08:15 +00:00
|
|
|
login = apply (import ./login.nix);
|
2010-05-20 21:07:32 +00:00
|
|
|
nat = apply (import ./nat.nix);
|
2010-03-18 13:07:56 +00:00
|
|
|
openssh = apply (import ./openssh.nix);
|
2010-01-26 23:55:22 +00:00
|
|
|
portmap = apply (import ./portmap.nix);
|
2010-01-11 15:58:15 +00:00
|
|
|
proxy = apply (import ./proxy.nix);
|
2010-01-05 11:18:43 +00:00
|
|
|
quake3 = apply (import ./quake3.nix);
|
|
|
|
subversion = apply (import ./subversion.nix);
|
2010-01-05 11:57:17 +00:00
|
|
|
trac = apply (import ./trac.nix);
|
2010-01-05 11:18:43 +00:00
|
|
|
}
|