1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00

release: remove package jobs

This commit is contained in:
Michael Hoang 2024-11-04 08:32:31 +11:00
parent e11dd028d3
commit 8a03b1850b

View file

@ -5,7 +5,7 @@
}:
let
inherit (release) mapTestOn packagePlatforms pkgs;
inherit (release) pkgs;
buildFromConfig = configuration: sel: sel
(import ./. { inherit nixpkgs configuration system; }).config;
@ -63,18 +63,11 @@ let
packageSet = import nixpkgs;
};
packageSet = {
inherit (pkgs)
stdenv bash zsh nix
tmux reattach-to-user-namespace
nano emacs vim;
};
manual = buildFromConfig ({ lib, config, ... }: {
system.stateVersion = lib.mkDefault config.system.maxStateVersion;
}) (config: config.system.build.manual);
jobs = {
in {
manualHTML = manual.manualHTML;
manpages = manual.manpages;
options = manual.optionsJSON;
@ -133,9 +126,4 @@ let
tests.users-groups = makeTest ./tests/users-groups.nix;
tests.users-packages = makeTest ./tests/users-packages.nix;
tests.fonts = makeTest ./tests/fonts.nix;
}
// (mapTestOn (packagePlatforms packageSet));
in
jobs