Files
riverguile/flake.nix
bluepython508 a5e4b682fe Nix support
src/call-idle-handler.c change due to build failures because of -wall -werror
2025-03-18 10:03:47 +00:00

14 lines
331 B
Nix

{
outputs = { nixpkgs, systems, ... }: let
lib = nixpkgs.lib;
eachSystem = f: lib.genAttrs (import systems) (system: f { pkgs = nixpkgs.legacyPackages.${system}; });
in {
packages = eachSystem (p: {
default = import ./. p;
});
devShells = eachSystem (p: {
default = import ./. p;
});
};
}