home-manager/tests/stubs.nix

72 lines
1.7 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
stubType = types.submodule ({ name, ... }: {
options = {
name = mkOption {
type = types.str;
default = "dummy";
description = "The stub package name.";
};
outPath = mkOption {
type = types.nullOr types.str;
default = "@${name}@";
defaultText = "@\${name}@";
};
version = mkOption {
type = types.nullOr types.str;
default = null;
};
buildScript = mkOption {
type = types.str;
default = defaultBuildScript;
};
};
});
defaultBuildScript = "mkdir $out";
dummyPackage = pkgs.runCommandLocal "dummy" { } defaultBuildScript;
mkStubPackage = { name ? "dummy", outPath ? null, version ? null
, buildScript ? defaultBuildScript }:
let
pkg = if name == "dummy" && buildScript == defaultBuildScript then
dummyPackage
else
2022-08-07 14:03:37 +02:00
pkgs.runCommandLocal name { pname = name; } buildScript;
in pkg // optionalAttrs (outPath != null) {
inherit outPath;
# Prevent getOutput from descending into outputs
outputSpecified = true;
# Allow the original package to be used in derivation inputs
__spliced = {
buildHost = pkg;
hostTarget = pkg;
};
} // optionalAttrs (version != null) { inherit version; };
in {
options.test.stubs = mkOption {
type = types.attrsOf stubType;
default = { };
description =
"Package attributes that should be replaced by a stub package.";
};
config = {
lib.test.mkStubPackage = mkStubPackage;
nixpkgs.overlays = mkIf (config.test.stubs != { })
[ (self: super: mapAttrs (n: mkStubPackage) config.test.stubs) ];
};
}