summary refs log tree commit diff stats
path: root/shell.nix
blob: 49a1aeb21d0827b3938d67dd294b86b2eedf85db (plain)
1
2
3
4
5
6
7
8
9
{ pkgs ? (import <nixpkgs> { })
, dnscontrol ? (import ./. { inherit pkgs; })
}:
pkgs.mkShell {
  packages = with pkgs; [
    dnscontrol
    xh
  ];
}