forked from DGNum/infrastructure
fix(dns): Update to correct dns.nix version
This commit is contained in:
parent
6f41443cf5
commit
4a275fd07e
2 changed files with 9 additions and 8 deletions
|
@ -4,7 +4,7 @@ let
|
||||||
sources = import ../npins;
|
sources = import ../npins;
|
||||||
pkgs = import sources.nixpkgs { };
|
pkgs = import sources.nixpkgs { };
|
||||||
|
|
||||||
dns = import sources."dns.nix";
|
dns = import sources."dns.nix" { inherit pkgs; };
|
||||||
|
|
||||||
lib = import sources.nix-lib {
|
lib = import sources.nix-lib {
|
||||||
inherit (pkgs) lib;
|
inherit (pkgs) lib;
|
||||||
|
@ -28,7 +28,7 @@ in
|
||||||
else
|
else
|
||||||
pkgs.writers.writeJSON "meta.json" config;
|
pkgs.writers.writeJSON "meta.json" config;
|
||||||
|
|
||||||
dns = dns.util.${builtins.currentSystem}.writeZone "dgnum.eu" (
|
dns = dns.util.writeZone "dgnum.eu" (
|
||||||
pkgs.lib.recursiveUpdate { SOA.serial = 0; } (import ./dns.nix { inherit dns lib; })
|
pkgs.lib.recursiveUpdate { SOA.serial = 0; } (import ./dns.nix { inherit dns lib; })
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,16 +68,17 @@
|
||||||
"dns.nix": {
|
"dns.nix": {
|
||||||
"type": "GitRelease",
|
"type": "GitRelease",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "Git",
|
"type": "GitHub",
|
||||||
"url": "https://git.hubrecht.ovh/hubrecht/dns.nix"
|
"owner": "nix-community",
|
||||||
|
"repo": "dns.nix"
|
||||||
},
|
},
|
||||||
"pre_releases": false,
|
"pre_releases": false,
|
||||||
"version_upper_bound": null,
|
"version_upper_bound": null,
|
||||||
"release_prefix": null,
|
"release_prefix": null,
|
||||||
"version": "v1.2.1",
|
"version": "v1.2.0",
|
||||||
"revision": "66979725afe2164491be38ffff78460cc9b0ffd7",
|
"revision": "a3196708a56dee76186a9415c187473b94e6cbae",
|
||||||
"url": null,
|
"url": "https://api.github.com/repos/nix-community/dns.nix/tarball/v1.2.0",
|
||||||
"hash": "1bashjbh71dqs32yld7ihw2vz0vrad73pc35crf3qck8ssgpzv7d"
|
"hash": "011b6ahj4qcf7jw009qgbf6k5dvjmgls88khwzgjr9kxlgbypb90"
|
||||||
},
|
},
|
||||||
"git-hooks": {
|
"git-hooks": {
|
||||||
"type": "Git",
|
"type": "Git",
|
||||||
|
|
Loading…
Reference in a new issue