1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-11 05:39:44 +01:00

tests: reduce closure sizes

This commit is contained in:
Robert Helgesson 2024-02-03 19:39:45 +01:00 committed by Mikilio
parent 585ff9c3c0
commit 495b3c915a
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F
5 changed files with 98 additions and 64 deletions

View file

@ -18,6 +18,21 @@
fcitx5-qt = { outPath = null; }; fcitx5-qt = { outPath = null; };
fcitx5-gtk = { outPath = null; }; fcitx5-gtk = { outPath = null; };
fcitx5-chinese-addons = { outPath = null; }; fcitx5-chinese-addons = { outPath = null; };
gtk2 = {
buildScript = ''
mkdir -p $out/bin
echo '#/usr/bin/env bash' > $out/bin/gtk-query-immodules-2.0
chmod +x $out/bin/*
'';
};
gtk3 = {
buildScript = ''
mkdir -p $out/bin
echo '#/usr/bin/env bash' > $out/bin/gtk-query-immodules-3.0
chmod +x $out/bin/*
'';
};
}; };
nixpkgs.overlays = [ nixpkgs.overlays = [

View file

@ -11,10 +11,14 @@
programs.beets = { programs.beets = {
enable = true; enable = true;
package = config.lib.test.mkStubPackage { outPath = "@beets@"; };
mpdIntegration.enableStats = true; mpdIntegration.enableStats = true;
}; };
test.stubs = {
beets = { };
mpd = { };
};
nmt.script = '' nmt.script = ''
assertFileExists home-files/.config/beets/config.yaml assertFileExists home-files/.config/beets/config.yaml
assertFileContent \ assertFileContent \

View file

@ -1,10 +1,10 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
config = { imports = [ ./mpv-stubs.nix ];
programs.mpv = { programs.mpv = {
enable = true; enable = true;
package = pkgs.mpvDummy;
bindings = { bindings = {
WHEEL_UP = "seek 10"; WHEEL_UP = "seek 10";
@ -37,8 +37,6 @@
defaultProfiles = [ "gpu-hq" ]; defaultProfiles = [ "gpu-hq" ];
}; };
test.stubs.mpvDummy = { };
nmt.script = '' nmt.script = ''
assertFileContent \ assertFileContent \
home-files/.config/mpv/mpv.conf \ home-files/.config/mpv/mpv.conf \
@ -50,6 +48,4 @@
home-files/.config/mpv/script-opts/osc.conf \ home-files/.config/mpv/script-opts/osc.conf \
${./mpv-example-settings-expected-osc-opts} ${./mpv-example-settings-expected-osc-opts}
''; '';
};
} }

View file

@ -1,25 +1,16 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
config = { imports = [ ./mpv-stubs.nix ];
programs.mpv = { programs.mpv = {
enable = true; enable = true;
package = pkgs.mpvDummy; package = pkgs.emptyDirectory;
scripts = [ pkgs.mpvScript ]; scripts = [ pkgs.mpvScript ];
}; };
nixpkgs.overlays = [
(self: super: {
mpvScript =
pkgs.runCommandLocal "mpvScript" { scriptName = "something"; }
"mkdir $out";
})
];
test.stubs.mpvDummy = { };
test.asserts.assertions.expected = [ test.asserts.assertions.expected = [
'' ''
The programs.mpv "package" option is mutually exclusive with "scripts" option.'' The programs.mpv "package" option is mutually exclusive with "scripts" option.''
]; ];
};
} }

View file

@ -0,0 +1,28 @@
{ pkgs, ... }:
{
nixpkgs.overlays = [
(self: super: {
mpvScript = pkgs.runCommandLocal "mpvScript" { scriptName = "something"; }
"mkdir $out";
mpv-unwrapped = super.mpv-unwrapped.overrideAttrs {
builder = pkgs.writeShellScript "dummy" ''
PATH=${pkgs.coreutils}/bin
mkdir -p $dev $man $out/bin $out/Applications/mpv.app/Contents/MacOS
touch $out/bin/{mpv,umpv} \
$out/Applications/mpv.app/Contents/MacOS/{mpv,mpv-bundle}
chmod +x $out/bin/{mpv,umpv} \
$out/Applications/mpv.app/Contents/MacOS/{mpv,mpv-bundle}
'';
};
lua = pkgs.emptyDirectory.overrideAttrs {
luaversion = "0";
withPackages = ps: pkgs.emptyDirectory;
};
})
];
test.stubs = { yt-dlp = { }; };
}