homepage/flake.nix

19 lines
392 B
Nix
Raw Normal View History

2024-08-03 23:30:31 +02:00
{
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
{
2024-08-24 09:54:58 +02:00
formatter = pkgs.alejandra;
2024-08-03 23:30:31 +02:00
packages = rec {
default = posixlycorrect;
posixlycorrect = pkgs.callPackage ./. { };
};
});
}