2024-07-08 06:00:24 +00:00
|
|
|
{
|
2024-07-08 19:41:15 +00:00
|
|
|
outputs =
|
|
|
|
{ self, nixpkgs, ... }:
|
|
|
|
let
|
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
lib = import ./default.nix { inherit pkgs; };
|
|
|
|
in
|
|
|
|
{
|
|
|
|
bundlers."x86_64-linux" = rec {
|
|
|
|
default = adopt;
|
|
|
|
maintainers = lib.allMaintainers;
|
|
|
|
adopt = lib.noMaintainers;
|
2024-07-11 13:40:31 +00:00
|
|
|
list = lib.listMaintainers;
|
2024-07-08 19:41:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
formatter."x86_64-linux" = pkgs.nixfmt-rfc-style;
|
2024-07-08 06:00:24 +00:00
|
|
|
};
|
|
|
|
}
|