Build syndicate_utils for aarch64-linux

This commit is contained in:
Emery Hemingway 2024-06-03 20:51:24 +03:00
parent 0dd89af084
commit 65f7505360
1 changed files with 6 additions and 2 deletions

View File

@ -11,13 +11,13 @@
overlays.default = import ./overlay.nix; overlays.default = import ./overlay.nix;
legacyPackages = self.lib.mapAttrs (system: pkgs: pkgs.extend self.overlays.default) { legacyPackages = self.lib.mapAttrs (system: pkgs: pkgs.extend self.overlays.default) {
inherit (nixpkgs.legacyPackages) x86_64-linux; inherit (nixpkgs.legacyPackages) aarch64-linux x86_64-linux;
}; };
packages = self.lib.mapAttrs ( packages = self.lib.mapAttrs (
system: pkgs: with pkgs; { system: pkgs: with pkgs; {
inherit inherit
fontconfig_actor # fontconfig_actor
libnotify_actor libnotify_actor
noise-c noise-c
preserves-tools preserves-tools
@ -80,5 +80,9 @@
}; };
} }
) { inherit (self.legacyPackages) x86_64-linux; }; ) { inherit (self.legacyPackages) x86_64-linux; };
hydraJobs.packages.aarch64-linux = {
inherit (self.packages.aarch64-linux) syndicate_utils;
};
}; };
} }