Nix support

src/call-idle-handler.c change due to build failures because of -wall -werror
This commit is contained in:
bluepython508
2025-03-04 17:14:37 +00:00
parent 744ce4b1eb
commit a5e4b682fe
8 changed files with 101 additions and 2 deletions

13
flake.nix Normal file
View File

@@ -0,0 +1,13 @@
{
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;
});
};
}