My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/servers/dns/ncdns/default.nix

39 lines
887 B

{ lib, git, buildGoPackage, fetchFromGitHub, libcap }:
buildGoPackage rec {
pname = "ncdns";
version = "0.0.10.3";
goPackagePath = "github.com/namecoin/ncdns";
goDeps = ./deps.nix;
src = fetchFromGitHub {
owner = "namecoin";
repo = "ncdns";
rev = "v${version}";
sha256 = "12q5al48mkjhgyk7z5wyklzzrdbcqhwxl79axa4gh9ld75prghbq";
};
patches = [ ./fix-tpl-path.nix ];
buildInputs = [ libcap ];
preBuild = ''
go generate github.com/namecoin/x509-signature-splice/...
'';
postInstall = ''
mkdir -p "$out/share"
cp -r "$src/_doc" "$out/share/doc"
cp -r "$src/_tpl" "$out/share/tpl"
'';
meta = with lib; {
description = "Namecoin to DNS bridge daemon";
homepage = "https://github.com/namecoin/ncdns";
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = with maintainers; [ rnhmjoj ];
};
}