wow
Some checks failed
CI / check (push) Successful in 4s
CI / list-packages (push) Successful in 3s
CI / build (helium) (push) Successful in 5s
CI / build (pjsk-cursor) (push) Successful in 3s
CI / build (vscode-insiders) (push) Failing after 12s
CI / build (waterfox-bin) (push) Successful in 4s
CI / build (xcursor-mizuki) (push) Successful in 2s
Some checks failed
CI / check (push) Successful in 4s
CI / list-packages (push) Successful in 3s
CI / build (helium) (push) Successful in 5s
CI / build (pjsk-cursor) (push) Successful in 3s
CI / build (vscode-insiders) (push) Failing after 12s
CI / build (waterfox-bin) (push) Successful in 4s
CI / build (xcursor-mizuki) (push) Successful in 2s
This commit is contained in:
parent
c293ad4c67
commit
e880422959
1 changed files with 24 additions and 16 deletions
18
flake.nix
18
flake.nix
|
|
@ -7,13 +7,12 @@
|
|||
|
||||
outputs = { self, nixpkgs }:
|
||||
let
|
||||
system = [
|
||||
supportedSystems = [
|
||||
"x86_64-linux"
|
||||
"aarch64-darwin"
|
||||
"x86_64-darwin"
|
||||
];
|
||||
|
||||
# Overlay 정의
|
||||
overlay = final: prev: {
|
||||
waterfox-bin = final.callPackage ./pkgs/waterfox-bin/default.nix { };
|
||||
xcursor-mizuki = final.callPackage ./pkgs/xcursor-mizuki/default.nix { };
|
||||
|
|
@ -22,15 +21,19 @@
|
|||
vscode-insiders = final.callPackage ./pkgs/vscode-insiders/default.nix { };
|
||||
};
|
||||
|
||||
pkgs = import nixpkgs {
|
||||
forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems (system: f (
|
||||
import nixpkgs {
|
||||
inherit system;
|
||||
overlays = [ overlay ];
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
}
|
||||
));
|
||||
in {
|
||||
overlays.default = overlay;
|
||||
|
||||
packages.${system} = {
|
||||
packages = forAllSystems (pkgs:
|
||||
let
|
||||
allPkgs = {
|
||||
inherit (pkgs)
|
||||
waterfox-bin
|
||||
xcursor-mizuki
|
||||
|
|
@ -38,6 +41,11 @@
|
|||
helium
|
||||
vscode-insiders;
|
||||
};
|
||||
in
|
||||
nixpkgs.lib.filterAttrs (name: pkg:
|
||||
nixpkgs.lib.elem pkgs.stdenv.hostPlatform.system (pkg.meta.platforms or [ "x86_64-linux" ])
|
||||
) allPkgs
|
||||
);
|
||||
|
||||
nixConfig = {
|
||||
extra-substituters = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue