mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
Merge staging-next into staging
This commit is contained in:
commit
f6242f9557
89 changed files with 1291 additions and 524 deletions
|
@ -16,6 +16,7 @@ let
|
|||
|
||||
baseOS =
|
||||
import ../eval-config.nix {
|
||||
inherit lib;
|
||||
system = null; # use modularly defined system
|
||||
inherit (config.node) specialArgs;
|
||||
modules = [ config.defaults ];
|
||||
|
|
|
@ -315,7 +315,6 @@ in
|
|||
environment.systemPackages = with pkgs.pantheon; [
|
||||
contractor
|
||||
file-roller-contract
|
||||
gnome-bluetooth-contract
|
||||
];
|
||||
|
||||
environment.pathsToLink = [
|
||||
|
|
|
@ -87,6 +87,7 @@ in {
|
|||
# Testing the test driver
|
||||
nixos-test-driver = {
|
||||
extra-python-packages = handleTest ./nixos-test-driver/extra-python-packages.nix {};
|
||||
lib-extend = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./nixos-test-driver/lib-extend.nix {};
|
||||
node-name = runTest ./nixos-test-driver/node-name.nix;
|
||||
};
|
||||
|
||||
|
|
31
nixos/tests/nixos-test-driver/lib-extend.nix
Normal file
31
nixos/tests/nixos-test-driver/lib-extend.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
patchedPkgs = pkgs.extend (new: old: {
|
||||
lib = old.lib.extend (self: super: {
|
||||
sorry_dave = "sorry dave";
|
||||
});
|
||||
});
|
||||
|
||||
testBody = {
|
||||
name = "demo lib overlay";
|
||||
|
||||
nodes = {
|
||||
machine = { lib, ... }: {
|
||||
environment.etc."got-lib-overlay".text = lib.sorry_dave;
|
||||
};
|
||||
};
|
||||
|
||||
# We don't need to run an actual test. Instead we build the `machine` configuration
|
||||
# and call it a day, because that already proves that `lib` is wired up correctly.
|
||||
# See the attrset returned at the bottom of this file.
|
||||
testScript = "";
|
||||
};
|
||||
|
||||
inherit (patchedPkgs.testers) nixosTest runNixOSTest;
|
||||
evaluationNixosTest = nixosTest testBody;
|
||||
evaluationRunNixOSTest = runNixOSTest testBody;
|
||||
in {
|
||||
nixosTest = evaluationNixosTest.driver.nodes.machine.system.build.toplevel;
|
||||
runNixOSTest = evaluationRunNixOSTest.driver.nodes.machine.system.build.toplevel;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue