mirror of
https://github.com/RGBCube/crash
synced 2025-07-28 00:47:43 +00:00
fix build
This commit is contained in:
parent
ec77c04485
commit
3405a772ba
4 changed files with 45 additions and 25 deletions
|
@ -6,12 +6,15 @@
|
|||
extra-trusted-public-keys = "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=";
|
||||
};
|
||||
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
systems.url = "github:nix-systems/default";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs }: let
|
||||
outputs = { self, nixpkgs, systems }: let
|
||||
inherit (nixpkgs) lib;
|
||||
|
||||
forEachSystem = lib.genAttrs [ "x86_64-linux" "aarch64-linux" "riscv64-linux" ];
|
||||
forEachSystem = lib.genAttrs (import systems);
|
||||
in {
|
||||
devShell = forEachSystem (system: with nixpkgs.legacyPackages.${system}; mkShell {
|
||||
packages = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue