1
0
Fork 0
nix-overlay/packages/controld.nix

26 lines
691 B
Nix
Raw Normal View History

2024-07-26 15:41:48 +00:00
{ pkgs, lib }:
pkgs.buildGoModule rec {
pname = "controld";
2024-09-19 02:01:30 +00:00
version = "1.3.9";
2024-07-26 15:41:48 +00:00
src = pkgs.fetchFromGitHub {
owner = "Control-D-Inc";
repo = "ctrld";
rev = "v${version}";
2024-09-19 02:01:30 +00:00
hash = "sha256-fiFzqFo4StBHHbV3Y9SQ4zxYwNB/jiyNxf4e1NegWeY=";
2024-07-26 15:41:48 +00:00
};
2024-09-15 02:01:33 +00:00
vendorHash = "sha256-e/lIi7TRhwTjdcmT3bsCbg/mC/xPFR7kN0rnyQHJ81o=";
2024-07-26 15:41:48 +00:00
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
doCheck = false;
meta = with lib; {
description = "A highly configurable, multi-protocol DNS forwarding proxy";
homepage = "https://github.com/Control-D-Inc/ctrld";
license = [ licenses.mit ];
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
};
}