mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 09:36:20 +09:00
parent
5babb318ba
commit
5570aab340
2 changed files with 4 additions and 8 deletions
|
@ -1463,7 +1463,7 @@ in
|
||||||
wpa_supplicant = import ./wpa_supplicant.nix { inherit pkgs runTest; };
|
wpa_supplicant = import ./wpa_supplicant.nix { inherit pkgs runTest; };
|
||||||
wordpress = runTest ./wordpress.nix;
|
wordpress = runTest ./wordpress.nix;
|
||||||
wrappers = handleTest ./wrappers.nix { };
|
wrappers = handleTest ./wrappers.nix { };
|
||||||
writefreely = handleTest ./web-apps/writefreely.nix { };
|
writefreely = import ./web-apps/writefreely.nix { inherit pkgs runTest; };
|
||||||
wstunnel = runTest ./wstunnel.nix;
|
wstunnel = runTest ./wstunnel.nix;
|
||||||
xandikos = runTest ./xandikos.nix;
|
xandikos = runTest ./xandikos.nix;
|
||||||
xautolock = runTest ./xautolock.nix;
|
xautolock = runTest ./xautolock.nix;
|
||||||
|
|
|
@ -1,16 +1,12 @@
|
||||||
{
|
{
|
||||||
system ? builtins.currentSystem,
|
runTest,
|
||||||
config ? { },
|
...
|
||||||
pkgs ? import ../../.. { inherit system config; },
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with import ../../lib/testing-python.nix { inherit system pkgs; };
|
|
||||||
with pkgs.lib;
|
|
||||||
|
|
||||||
let
|
let
|
||||||
writefreelyTest =
|
writefreelyTest =
|
||||||
{ name, type }:
|
{ name, type }:
|
||||||
makeTest {
|
runTest {
|
||||||
name = "writefreely-${name}";
|
name = "writefreely-${name}";
|
||||||
|
|
||||||
nodes.machine =
|
nodes.machine =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue