Nix support
src/call-idle-handler.c change due to build failures because of -wall -werror
This commit is contained in:
13
flake.nix
Normal file
13
flake.nix
Normal 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;
|
||||
});
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user