This commit is contained in:
Fabian Montero 2025-08-26 00:34:31 -06:00
parent 8df0b79311
commit 02529ca146
Signed by untrusted user: fabian
GPG key ID: 1FFAC35E1798174F
3 changed files with 45 additions and 55 deletions

View file

@ -3,16 +3,19 @@
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
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 ./. { };
posixlycorrect = pkgs.callPackage ./. {};
};
});
}