1
0

Add package import magic

This commit is contained in:
2020-12-09 22:42:39 +01:00
parent 3b2b9b50f3
commit 6b863caa45
3 changed files with 12 additions and 0 deletions

5
pkgs/default.nix Normal file
View File

@@ -0,0 +1,5 @@
import <nixpkgs> {
overlays = [
(import ./overlay.nix)
];
}

3
pkgs/overlay.nix Normal file
View File

@@ -0,0 +1,3 @@
self: super: {
anycast_healthchecker = self.python3.pkgs.callPackage ./anycast_healthchecker {};
}