maintainers/flake.nix

14 lines
319 B
Nix
Raw Normal View History

2024-07-08 06:00:24 +00:00
{
outputs = { self, nixpkgs, ... }: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
2024-07-08 19:37:49 +00:00
lib = import ./default.nix { inherit pkgs; };
2024-07-08 06:00:24 +00:00
in {
2024-07-08 19:37:49 +00:00
bundlers."x86_64-linux" = rec {
2024-07-08 06:03:23 +00:00
default = adopt;
2024-07-08 19:37:49 +00:00
maintainers = lib.allMaintainers;
adopt = lib.noMaintainers;
2024-07-08 06:00:24 +00:00
};
};
}