maintainers/flake.nix

24 lines
547 B
Nix
Raw Normal View History

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; };
2024-07-29 03:09:17 +00:00
inherit (lib)
allMaintainers
expandInput
noMaintainers
;
2024-07-08 19:41:15 +00:00
in
{
bundlers."x86_64-linux" = rec {
2024-07-29 03:09:17 +00:00
default = unmaintained;
all = drv: allMaintainers (expandInput drv);
unmaintained = drv: noMaintainers (expandInput drv);
2024-07-08 19:41:15 +00:00
};
formatter."x86_64-linux" = pkgs.nixfmt-rfc-style;
2024-07-08 06:00:24 +00:00
};
}