homepage/flake.nix
2024-08-03 15:31:15 -06:00

19 lines
394 B
Nix

{
inputs = {
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
formatter = pkgs.nixpkgs-fmt;
packages = rec {
default = posixlycorrect;
posixlycorrect = pkgs.callPackage ./. { };
};
});
}