uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
72
nixos/tests/maestral.nix
Normal file
72
nixos/tests/maestral.nix
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
import ./make-test-python.nix ({ pkgs, ... }: {
|
||||
name = "maestral";
|
||||
meta = with pkgs.lib.maintainers; {
|
||||
maintainers = [ peterhoeg ];
|
||||
};
|
||||
|
||||
nodes =
|
||||
let
|
||||
common = attrs:
|
||||
pkgs.lib.recursiveUpdate
|
||||
{
|
||||
imports = [ ./common/user-account.nix ];
|
||||
systemd.user.services.maestral = {
|
||||
description = "Maestral Dropbox Client";
|
||||
serviceConfig.Type = "exec";
|
||||
};
|
||||
}
|
||||
attrs;
|
||||
|
||||
in
|
||||
{
|
||||
cli = { ... }: common {
|
||||
systemd.user.services.maestral = {
|
||||
wantedBy = [ "default.target" ];
|
||||
serviceConfig.ExecStart = "${pkgs.maestral}/bin/maestral start --foreground";
|
||||
};
|
||||
};
|
||||
|
||||
gui = { ... }: common {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.sddm.enable = true;
|
||||
displayManager.defaultSession = "plasma";
|
||||
desktopManager.plasma5.enable = true;
|
||||
desktopManager.plasma5.runUsingSystemd = true;
|
||||
displayManager.autoLogin = {
|
||||
enable = true;
|
||||
user = "alice";
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user.services = {
|
||||
maestral = {
|
||||
wantedBy = [ "graphical-session.target" ];
|
||||
serviceConfig.ExecStart = "${pkgs.maestral-gui}/bin/maestral_qt";
|
||||
};
|
||||
# PowerDevil doesn't like our VM
|
||||
plasma-powerdevil.enable = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
testScript = { nodes, ... }:
|
||||
let
|
||||
user = nodes.cli.config.users.users.alice;
|
||||
in
|
||||
''
|
||||
start_all()
|
||||
|
||||
with subtest("CLI"):
|
||||
# we need SOME way to give the user an active login session
|
||||
cli.execute("loginctl enable-linger ${user.name}")
|
||||
cli.systemctl("start user@${toString user.uid}")
|
||||
cli.wait_for_unit("maestral.service", "${user.name}")
|
||||
|
||||
with subtest("GUI"):
|
||||
gui.wait_for_x()
|
||||
gui.succeed("xauth merge ${user.home}/.Xauthority")
|
||||
gui.wait_for_window("^Desktop ")
|
||||
gui.wait_for_unit("maestral.service", "${user.name}")
|
||||
'';
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue