feat(flake.nix): remove dnscontrol version override to use latest feat(types-dnscontrol.d.ts): update to DNSControl 4.45.0 with improved type definitions
26 lines
714 B
Nix
26 lines
714 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = import nixpkgs { inherit system; };
|
|
in {
|
|
devShells.default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
dnscontrol
|
|
(git-crypt.overrideAttrs (oldAttrs: { src = fetchFromGitHub {
|
|
owner = "narrowin";
|
|
repo = "git-crypt";
|
|
rev = "v0.8.0-narrowin";
|
|
sha256 = "sha256-sVlX+T67Vbsfr/o7u1y+nI07iRcjHx5HmsBBEULwgTg=";
|
|
};}))
|
|
];
|
|
};
|
|
}
|
|
);
|
|
}
|