webnsupdate/flake.nix

36 lines
889 B
Nix
Raw Normal View History

2024-05-03 20:29:10 +02:00
{
description = "An http server that calls nsupdate internally";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default";
};
2024-05-03 20:29:10 +02:00
outputs = {
self,
nixpkgs,
systems,
2024-05-03 20:29:10 +02:00
}: let
forEachSupportedSystem = nixpkgs.lib.genAttrs (import systems);
2024-05-03 20:29:10 +02:00
in {
formatter = forEachSupportedSystem (system: nixpkgs.legacyPackages.${system}.alejandra);
2024-05-03 20:29:10 +02:00
packages = forEachSupportedSystem (system: {
default = nixpkgs.legacyPackages.${system}.callPackage ./default.nix {};
2024-05-03 20:29:10 +02:00
});
overlays.default = final: prev: {
webnsupdate = final.callPackage ./default.nix {};
};
nixosModules.default = ./module.nix;
devShells = forEachSupportedSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
2024-05-03 20:29:10 +02:00
default = pkgs.mkShell {
packages = [pkgs.cargo-insta];
};
});
};
}