git-subtree-dir: homepage git-subtree-mainline:557d85391c
git-subtree-split:a07048bb01
18 lines
392 B
Nix
18 lines
392 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.alejandra;
|
|
|
|
packages = rec {
|
|
default = posixlycorrect;
|
|
posixlycorrect = pkgs.callPackage ./. { };
|
|
};
|
|
});
|
|
}
|