2021-02-26 16:03:49 +01:00
|
|
|
import ./make-test-python.nix ({ pkgs, lib, ... }: let
|
2020-04-19 15:41:18 +02:00
|
|
|
|
2020-12-15 20:25:00 +01:00
|
|
|
customPkgs = pkgs.appendOverlays [ (self: super: {
|
|
|
|
hello = super.hello.overrideAttrs (old: {
|
|
|
|
name = "custom-hello";
|
2020-04-19 15:41:18 +02:00
|
|
|
});
|
2020-12-15 20:25:00 +01:00
|
|
|
}) ];
|
2020-04-19 15:41:18 +02:00
|
|
|
|
|
|
|
in {
|
2020-12-15 20:24:57 +01:00
|
|
|
name = "containers-custom-pkgs";
|
2021-02-26 16:03:49 +01:00
|
|
|
meta = {
|
2022-06-26 19:12:18 +02:00
|
|
|
maintainers = with lib.maintainers; [ adisbladis erikarvstedt ];
|
2020-04-19 15:41:18 +02:00
|
|
|
};
|
|
|
|
|
2022-03-21 00:15:30 +01:00
|
|
|
nodes.machine = { config, ... }: {
|
2020-12-15 20:25:00 +01:00
|
|
|
assertions = let
|
|
|
|
helloName = (builtins.head config.containers.test.config.system.extraDependencies).name;
|
|
|
|
in [ {
|
|
|
|
assertion = helloName == "custom-hello";
|
|
|
|
message = "Unexpected value: ${helloName}";
|
|
|
|
} ];
|
|
|
|
|
2020-12-15 20:24:57 +01:00
|
|
|
containers.test = {
|
|
|
|
autoStart = true;
|
2020-12-15 20:25:00 +01:00
|
|
|
config = { pkgs, config, ... }: {
|
|
|
|
nixpkgs.pkgs = customPkgs;
|
|
|
|
system.extraDependencies = [ pkgs.hello ];
|
2020-04-19 15:41:18 +02:00
|
|
|
};
|
|
|
|
};
|
2020-12-15 20:24:57 +01:00
|
|
|
};
|
2020-04-19 15:41:18 +02:00
|
|
|
|
2020-12-15 20:25:00 +01:00
|
|
|
# This test only consists of evaluating the test machine
|
2021-05-08 22:59:12 +02:00
|
|
|
testScript = "pass";
|
2020-04-19 15:41:18 +02:00
|
|
|
})
|