2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								{ system, pkgs, callTest }:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								# The return value of this function will be an attrset with arbitrary depth and
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								# the `anything` returned by callTest at its test leafs.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								# The tests not supported by `system` will be replaced with `{}`, so that
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 22:55:23 +09:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								# `passthru.tests` can contain links to those without breaking on architectures
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								# where said tests are unsupported.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								# Example callTest that just extracts the derivation from the test:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								#   callTest = t: t.test;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								with pkgs.lib;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								let
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  discoverTests = val:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if !isAttrs val then val
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    else if hasAttr "test" val then callTest val
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    else mapAttrs (n: s: discoverTests s) val;
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  handleTest = path: args:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    discoverTests (import path ({ inherit system pkgs; } // args));
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  handleTestOn = systems: path: args:
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if elem system systems then handleTest path args
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    else {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								in
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								{
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 21:27:58 +09:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  acme = handleTestOn ["x86_64-linux"] ./acme.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  atd = handleTest ./atd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-04-12 19:06:11 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  automysqlbackup = handleTest ./automysqlbackup.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  avahi = handleTest ./avahi.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-12 01:30:55 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  babeld = handleTest ./babeld.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 21:27:58 +09:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  bcachefs = handleTestOn ["x86_64-linux"] ./bcachefs.nix {}; # linux-4.18.2018.10.12 is unsupported on aarch64
							 | 
						
					
						
							
								
									
										
										
										
											2019-02-22 08:10:02 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  beanstalkd = handleTest ./beanstalkd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 21:27:58 +09:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  beegfs = handleTestOn ["x86_64-linux"] ./beegfs.nix {}; # beegfs is unsupported on aarch64
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  bind = handleTest ./bind.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  bittorrent = handleTest ./bittorrent.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  #blivet = handleTest ./blivet.nix {};   # broken since 2017-07024
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 21:27:58 +09:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  boot = handleTestOn ["x86_64-linux"] ./boot.nix {}; # syslinux is unsupported on aarch64
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  boot-stage1 = handleTest ./boot-stage1.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  borgbackup = handleTest ./borgbackup.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  buildbot = handleTest ./buildbot.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-09 13:32:03 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  caddy = handleTest ./caddy.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  cadvisor = handleTestOn ["x86_64-linux"] ./cadvisor.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-04-22 18:06:40 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  cassandra = handleTest ./cassandra.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-11-01 13:12:18 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ceph-single-node = handleTestOn ["x86_64-linux"] ./ceph-single-node.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  ceph-multi-node = handleTestOn ["x86_64-linux"] ./ceph-multi-node.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  certmgr = handleTest ./certmgr.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  cfssl = handleTestOn ["x86_64-linux"] ./cfssl.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  chromium = (handleTestOn ["x86_64-linux"] ./chromium.nix {}).stable or {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  cjdns = handleTest ./cjdns.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-12-19 15:06:53 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  clickhouse = handleTest ./clickhouse.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  cloud-init = handleTest ./cloud-init.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  codimd = handleTest ./codimd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-03-18 07:59:17 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  colord = handleTest ./colord.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  containers-bridge = handleTest ./containers-bridge.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-18 21:37:38 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  containers-ephemeral = handleTest ./containers-ephemeral.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  containers-extra_veth = handleTest ./containers-extra_veth.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  containers-hosts = handleTest ./containers-hosts.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  containers-imperative = handleTest ./containers-imperative.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  containers-ipv4 = handleTest ./containers-ipv4.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  containers-ipv6 = handleTest ./containers-ipv6.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  containers-macvlans = handleTest ./containers-macvlans.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  containers-physical_interfaces = handleTest ./containers-physical_interfaces.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  containers-restart_networking = handleTest ./containers-restart_networking.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  containers-tmpfs = handleTest ./containers-tmpfs.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-07-24 20:48:43 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  couchdb = handleTest ./couchdb.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  deluge = handleTest ./deluge.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dhparams = handleTest ./dhparams.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dnscrypt-proxy = handleTestOn ["x86_64-linux"] ./dnscrypt-proxy.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  docker = handleTestOn ["x86_64-linux"] ./docker.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-03-24 18:59:09 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  docker-containers = handleTestOn ["x86_64-linux"] ./docker-containers.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  docker-edge = handleTestOn ["x86_64-linux"] ./docker-edge.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  docker-preloader = handleTestOn ["x86_64-linux"] ./docker-preloader.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  docker-registry = handleTest ./docker-registry.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  docker-tools = handleTestOn ["x86_64-linux"] ./docker-tools.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  docker-tools-overlay = handleTestOn ["x86_64-linux"] ./docker-tools-overlay.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-03-26 19:04:28 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  documize = handleTest ./documize.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  dovecot = handleTest ./dovecot.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  # ec2-config doesn't work in a sandbox as the simulated ec2 instance needs network access
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  #ec2-config = (handleTestOn ["x86_64-linux"] ./ec2.nix {}).boot-ec2-config or {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  ec2-nixops = (handleTestOn ["x86_64-linux"] ./ec2.nix {}).boot-ec2-nixops or {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  ecryptfs = handleTest ./ecryptfs.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-15 12:16:28 +03:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ejabberd = handleTest ./xmpp/ejabberd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  elk = handleTestOn ["x86_64-linux"] ./elk.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  env = handleTest ./env.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  etcd = handleTestOn ["x86_64-linux"] ./etcd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-07-09 23:46:21 +00:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  etcd-cluster = handleTestOn ["x86_64-linux"] ./etcd-cluster.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-29 15:06:32 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  fancontrol = handleTest ./fancontrol.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  ferm = handleTest ./ferm.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  firefox = handleTest ./firefox.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  firewall = handleTest ./firewall.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-12-17 20:12:09 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  fish = handleTest ./fish.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-02-12 18:26:08 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  flannel = handleTestOn ["x86_64-linux"] ./flannel.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  flatpak = handleTest ./flatpak.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-15 20:13:35 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  flatpak-builder = handleTest ./flatpak-builder.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-07-30 00:35:27 +09:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  fluentd = handleTest ./fluentd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-29 14:02:20 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  fontconfig-default-fonts = handleTest ./fontconfig-default-fonts.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  fsck = handleTest ./fsck.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 21:27:58 +09:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  fwupd = handleTestOn ["x86_64-linux"] ./fwupd.nix {}; # libsmbios is unsupported on aarch64
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  gdk-pixbuf = handleTest ./gdk-pixbuf.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-25 15:14:57 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  gotify-server = handleTest ./gotify-server.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  gitea = handleTest ./gitea.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  gitlab = handleTest ./gitlab.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  gitolite = handleTest ./gitolite.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  gjs = handleTest ./gjs.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-09-02 19:06:54 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  glib-networking = handleTest ./glib-networking.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-17 01:28:43 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  glusterfs = handleTest ./glusterfs.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-06 22:01:17 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  gnome3-xorg = handleTest ./gnome3-xorg.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  gnome3 = handleTest ./gnome3.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-23 03:16:28 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  gnome-photos = handleTest ./gnome-photos.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  gocd-agent = handleTest ./gocd-agent.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  gocd-server = handleTest ./gocd-server.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-05-16 21:29:17 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  google-oslogin = handleTest ./google-oslogin {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  graphene = handleTest ./graphene.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  grafana = handleTest ./grafana.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  graphite = handleTest ./graphite.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-07-09 02:01:43 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  graylog = handleTest ./graylog.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  hadoop.hdfs = handleTestOn [ "x86_64-linux" ] ./hadoop/hdfs.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  hadoop.yarn = handleTestOn [ "x86_64-linux" ] ./hadoop/yarn.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-12 07:45:00 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  handbrake = handleTestOn ["x86_64-linux"] ./handbrake.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  haproxy = handleTest ./haproxy.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-06 14:04:41 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  hardened = handleTest ./hardened.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  hibernate = handleTest ./hibernate.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  hitch = handleTest ./hitch {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  hocker-fetchdocker = handleTest ./hocker-fetchdocker {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  home-assistant = handleTest ./home-assistant.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  hound = handleTest ./hound.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  hydra = handleTest ./hydra {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  i3wm = handleTest ./i3wm.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-07-07 03:03:59 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  icingaweb2 = handleTest ./icingaweb2.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  iftop = handleTest ./iftop.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-14 23:51:15 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  incron = handleTest ./incron.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  influxdb = handleTest ./influxdb.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  initrd-network-ssh = handleTest ./initrd-network-ssh {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  initrdNetwork = handleTest ./initrd-network.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  installer = handleTest ./installer.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  ipv6 = handleTest ./ipv6.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-25 07:09:36 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  jackett = handleTest ./jackett.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-05-01 11:57:34 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  jellyfin = handleTest ./jellyfin.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  jenkins = handleTest ./jenkins.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-04-01 08:39:25 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  kafka = handleTest ./kafka.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-11 04:36:51 +00:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  kerberos = handleTest ./kerberos/default.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  kernel-latest = handleTest ./kernel-latest.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  kernel-lts = handleTest ./kernel-lts.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-04-01 08:31:36 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  kernel-testing = handleTest ./kernel-testing.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  keymap = handleTest ./keymap.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-03-13 01:12:56 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  knot = handleTest ./knot.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  kubernetes.dns = handleTestOn ["x86_64-linux"] ./kubernetes/dns.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  # kubernetes.e2e should eventually replace kubernetes.rbac when it works
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  #kubernetes.e2e = handleTestOn ["x86_64-linux"] ./kubernetes/e2e.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  kubernetes.rbac = handleTestOn ["x86_64-linux"] ./kubernetes/rbac.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  latestKernel.login = handleTest ./login.nix { latestKernel = true; };
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  ldap = handleTest ./ldap.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  leaps = handleTest ./leaps.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-09-02 13:44:34 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  libgdata = handleTest ./libgdata.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-23 01:34:48 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  libxmlb = handleTest ./libxmlb.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-24 23:09:42 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  lidarr = handleTest ./lidarr.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-06 18:29:50 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  lightdm = handleTest ./lightdm.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-03-16 08:24:23 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  limesurvey = handleTest ./limesurvey.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  login = handleTest ./login.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-27 18:11:09 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  loki = handleTest ./loki.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  #logstash = handleTest ./logstash.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-03-27 07:35:24 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  mailcatcher = handleTest ./mailcatcher.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  mathics = handleTest ./mathics.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-04 22:38:58 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  matomo = handleTest ./matomo.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  matrix-synapse = handleTest ./matrix-synapse.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-05 21:19:11 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  mediawiki = handleTest ./mediawiki.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  memcached = handleTest ./memcached.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  mesos = handleTest ./mesos.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-18 09:28:16 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  metabase = handleTest ./metabase.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-12-21 10:36:58 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  miniflux = handleTest ./miniflux.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-02-05 17:38:34 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  minio = handleTest ./minio.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-03-07 11:29:25 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  minidlna = handleTest ./minidlna.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  misc = handleTest ./misc.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-07-16 01:06:19 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  moinmoin = handleTest ./moinmoin.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  mongodb = handleTest ./mongodb.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-21 10:09:15 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  moodle = handleTest ./moodle.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  morty = handleTest ./morty.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-04-24 16:23:13 +08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  mosquitto = handleTest ./mosquitto.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  mpd = handleTest ./mpd.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  mumble = handleTest ./mumble.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  munin = handleTest ./munin.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  mutableUsers = handleTest ./mutable-users.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-05-18 22:18:01 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  mxisd = handleTest ./mxisd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  mysql = handleTest ./mysql.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  mysqlBackup = handleTest ./mysql-backup.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  mysqlReplication = handleTest ./mysql-replication.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  nat.firewall = handleTest ./nat.nix { withFirewall = true; };
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  nat.firewall-conntrack = handleTest ./nat.nix { withFirewall = true; withConntrackHelpers = true; };
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  nat.standalone = handleTest ./nat.nix { withFirewall = false; };
							 | 
						
					
						
							
								
									
										
										
										
											2019-02-03 16:47:01 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  ndppd = handleTest ./ndppd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-02-01 14:29:54 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  neo4j = handleTest ./neo4j.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-05-26 00:35:29 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  nesting = handleTest ./nesting.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  netdata = handleTest ./netdata.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  networking.networkd = handleTest ./networking.nix { networkd = true; };
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  networking.scripted = handleTest ./networking.nix { networkd = false; };
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  # TODO: put in networking.nix after the test becomes more complete
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  networkingProxy = handleTest ./networking-proxy.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  nextcloud = handleTest ./nextcloud {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  nexus = handleTest ./nexus.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  nfs3 = handleTest ./nfs.nix { version = 3; };
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  nfs4 = handleTest ./nfs.nix { version = 4; };
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  nghttpx = handleTest ./nghttpx.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  nginx = handleTest ./nginx.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-12-28 11:41:52 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  nginx-sso = handleTest ./nginx-sso.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  nix-ssh-serve = handleTest ./nix-ssh-serve.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-07 18:04:18 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  nixos-generate-config = handleTest ./nixos-generate-config.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  novacomd = handleTestOn ["x86_64-linux"] ./novacomd.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  nsd = handleTest ./nsd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-04-22 08:06:33 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  nzbget = handleTest ./nzbget.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-23 01:20:56 +11:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  openarena = handleTest ./openarena.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  openldap = handleTest ./openldap.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  opensmtpd = handleTest ./opensmtpd.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  openssh = handleTest ./openssh.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-28 15:09:48 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  # openstack-image-userdata doesn't work in a sandbox as the simulated openstack instance needs network access
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  #openstack-image-userdata = (handleTestOn ["x86_64-linux"] ./openstack-image.nix {}).userdata or {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  openstack-image-metadata = (handleTestOn ["x86_64-linux"] ./openstack-image.nix {}).metadata or {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-21 00:27:14 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  orangefs = handleTest ./orangefs.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-09 20:26:05 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  os-prober = handleTestOn ["x86_64-linux"] ./os-prober.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  osquery = handleTest ./osquery.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-05 13:13:10 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  osrm-backend = handleTest ./osrm-backend.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  ostree = handleTest ./ostree.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-23 10:19:23 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  overlayfs = handleTest ./overlayfs.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-04-24 16:45:29 +08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  packagekit = handleTest ./packagekit.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  pam-oath-login = handleTest ./pam-oath-login.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-29 08:45:26 -08:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  pam-u2f = handleTest ./pam-u2f.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-24 17:33:05 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  pantheon = handleTest ./pantheon.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-27 15:26:31 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  paperless = handleTest ./paperless.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  peerflix = handleTest ./peerflix.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  pgjwt = handleTest ./pgjwt.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  pgmanage = handleTest ./pgmanage.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  php-pcre = handleTest ./php-pcre.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  plasma5 = handleTest ./plasma5.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  plotinus = handleTest ./plotinus.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  postgis = handleTest ./postgis.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  postgresql = handleTest ./postgresql.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-11 19:09:42 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  postgresql-wal-receiver = handleTest ./postgresql-wal-receiver.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  powerdns = handleTest ./powerdns.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-10-14 21:26:54 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  pppd = handleTest ./pppd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  predictable-interface-names = handleTest ./predictable-interface-names.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  printing = handleTest ./printing.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  prometheus = handleTest ./prometheus.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  prometheus-exporters = handleTest ./prometheus-exporters.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-15 12:16:28 +03:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  prosody = handleTest ./xmpp/prosody.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-15 12:58:00 +03:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  prosodyMysql = handleTest ./xmpp/prosody-mysql.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  proxy = handleTest ./proxy.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  quagga = handleTest ./quagga.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  rabbitmq = handleTest ./rabbitmq.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-24 23:09:21 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  radarr = handleTest ./radarr.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  radicale = handleTest ./radicale.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-31 20:17:33 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  redis = handleTest ./redis.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  redmine = handleTest ./redmine.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-28 17:33:26 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  roundcube = handleTest ./roundcube.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  rspamd = handleTest ./rspamd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-10-27 18:33:43 +09:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  rss2email = handleTest ./rss2email.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  rsyslogd = handleTest ./rsyslogd.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  runInMachine = handleTest ./run-in-machine.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  rxe = handleTest ./rxe.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  samba = handleTest ./samba.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  sddm = handleTest ./sddm.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-05-23 00:50:51 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  signal-desktop = handleTest ./signal-desktop.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  simple = handleTest ./simple.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  slim = handleTest ./slim.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  slurm = handleTest ./slurm.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  smokeping = handleTest ./smokeping.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  snapper = handleTest ./snapper.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  solr = handleTest ./solr.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-24 23:08:16 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  sonarr = handleTest ./sonarr.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  strongswan-swanctl = handleTest ./strongswan-swanctl.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  sudo = handleTest ./sudo.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  switchTest = handleTest ./switch-test.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-04-21 23:05:07 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  syncthing-init = handleTest ./syncthing-init.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-17 15:02:00 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  syncthing-relay = handleTest ./syncthing-relay.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  systemd = handleTest ./systemd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-03-14 15:26:10 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  systemd-confinement = handleTest ./systemd-confinement.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-05-15 11:05:37 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  systemd-timesyncd = handleTest ./systemd-timesyncd.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-24 17:36:08 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  systemd-networkd-wireguard = handleTest ./systemd-networkd-wireguard.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-04-04 19:38:56 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  pdns-recursor = handleTest ./pdns-recursor.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  taskserver = handleTest ./taskserver.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-01-21 11:30:11 +00:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  telegraf = handleTest ./telegraf.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-04-29 21:46:00 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  tiddlywiki = handleTest ./tiddlywiki.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-05-16 23:42:02 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  tinydns = handleTest ./tinydns.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  tor = handleTest ./tor.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  transmission = handleTest ./transmission.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-11-03 17:24:22 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  trac = handleTest ./trac.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-16 17:00:07 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  trezord = handleTest ./trezord.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-11-01 11:03:23 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  trickster = handleTest ./trickster.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  udisks2 = handleTest ./udisks2.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  upnp = handleTest ./upnp.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-05-27 23:03:22 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  uwsgi = handleTest ./uwsgi.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  vault = handleTest ./vault.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  virtualbox = handleTestOn ["x86_64-linux"] ./virtualbox.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-03-17 13:20:38 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  wireguard = handleTest ./wireguard {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-04-23 22:30:05 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  wireguard-generated = handleTest ./wireguard/generated.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  wordpress = handleTest ./wordpress.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  xautolock = handleTest ./xautolock.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  xdg-desktop-portal = handleTest ./xdg-desktop-portal.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  xfce = handleTest ./xfce.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-08-21 22:04:29 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  xfce4-14 = handleTest ./xfce4-14.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  xmonad = handleTest ./xmonad.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  xrdp = handleTest ./xrdp.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  xss-lock = handleTest ./xss-lock.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  yabar = handleTest ./yabar.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2019-06-27 08:56:10 -07:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  yggdrasil = handleTest ./yggdrasil.nix {};
							 | 
						
					
						
							
								
									
										
										
										
											2018-11-11 20:30:07 +09:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  zookeeper = handleTest ./zookeeper.nix {};
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								}
							 |