Jalil David Salamé Messina
d44d2aa1a7
Should provide better caching of the intermediate build artifacts.
23 lines
614 B
Nix
23 lines
614 B
Nix
{
|
|
description = "An http server that calls nsupdate internally";
|
|
inputs = {
|
|
crane.url = "github:ipetkov/crane";
|
|
flake-parts = {
|
|
url = "github:hercules-ci/flake-parts";
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
};
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
systems.url = "github:nix-systems/default";
|
|
treefmt-nix = {
|
|
url = "github:numtide/treefmt-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs =
|
|
inputs:
|
|
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
|
imports = [ ./flake-modules ];
|
|
systems = import inputs.systems;
|
|
};
|
|
}
|