mirror of
https://github.com/nix-community/emacs-overlay.git
synced 2025-12-06 02:40:25 -08:00
flake.nix: Fixup typos in hydraJobs
This commit is contained in:
parent
609869d20b
commit
fe9ad516f6
1 changed files with 4 additions and 3 deletions
|
|
@ -40,10 +40,11 @@
|
|||
mkHydraJobs = pkgs:
|
||||
let
|
||||
mkEmacsSet = emacs: pkgs.recurseIntoAttrs (
|
||||
pkgs.lib.filterAttrs
|
||||
(n: v: builtins.typeOf v == "set" && ! pkgs.lib.isDerivation v)
|
||||
lib.filterAttrs
|
||||
(n: v: builtins.typeOf v == "set" && ! lib.isDerivation v)
|
||||
(pkgs.emacsPackagesFor emacs)
|
||||
);
|
||||
inherit (pkgs) lib;
|
||||
|
||||
in
|
||||
{
|
||||
|
|
@ -78,7 +79,7 @@
|
|||
in
|
||||
{
|
||||
"22.11" = mkHydraJobs (importPkgs nixpkgs-stable { inherit system; });
|
||||
"unstable" = mkHydraJobs (importPkgs nixpkgs { inherit system; };);
|
||||
"unstable" = mkHydraJobs (importPkgs nixpkgs { inherit system; });
|
||||
};
|
||||
}) // flake-utils.lib.eachDefaultSystem (system: (
|
||||
let
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue