1
Fork 0
mirror of https://github.com/RGBCube/crash synced 2025-07-28 00:47:43 +00:00

fix build

This commit is contained in:
RGBCube 2025-02-22 17:49:14 +03:00
parent ec77c04485
commit 3405a772ba
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
4 changed files with 45 additions and 25 deletions

View file

@ -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 = [