Merge pull request #34510 from sorki/nixops-dns

nixops-dns: init at f6c3f79
This commit is contained in:
Jörg Thalheim 2018-02-10 10:47:25 +00:00 committed by GitHub
commit df0fe7aa56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,20 @@
[
{
goPackagePath = "github.com/mattn/go-sqlite3";
fetch = {
type = "git";
url = "https://github.com/mattn/go-sqlite3";
rev = "b4142c444a8941d0d92b0b7103a24df9cd815e42";
sha256 = "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla";
};
}
{
goPackagePath = "github.com/miekg/dns";
fetch = {
type = "git";
url = "https://github.com/miekg/dns";
rev = "75229eecb7af00b2736e93b779a78429dcb19472";
sha256 = "1vsjy07kkyx11iz4qsihhykac3ddq3ywdgv6bwrv407504f7x6wl";
};
}
]

View File

@ -0,0 +1,26 @@
{ lib
, stdenv
, buildGoPackage
, fetchFromGitHub }:
buildGoPackage rec {
name = "nixops-dns";
version = "1.0";
goDeps = ./deps.nix;
goPackagePath = "github.com/kamilchm/nixops-dns";
src = fetchFromGitHub {
owner = "kamilchm";
repo = "nixops-dns";
rev = "v${version}";
sha256 = "1fyqwk2knrv40zpf71a56bjyaycr3p6fzrqq7gaan056ydy83cai";
};
meta = with lib; {
homepage = https://github.com/kamilchm/nixops-dns/;
description = "DNS server for resolving NixOps machines";
license = licenses.mit;
maintainers = with maintainers; [ kamilchm sorki ];
};
}

View File

@ -19913,6 +19913,8 @@ with pkgs;
nixopsUnstable = lowPrio (callPackage ../tools/package-management/nixops/unstable.nix { });
nixops-dns = callPackage ../tools/package-management/nixops/nixops-dns.nix { };
nixui = callPackage ../tools/package-management/nixui { node_webkit = nwjs_0_12; };
nix-bundle = callPackage ../tools/package-management/nix-bundle { nix = nixUnstable; };