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