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