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

26 lines
699 B
Nix
Raw Normal View History

2022-06-09 19:58:46 +00:00
{ system, lib, pkgs }:
pkgs.buildGoModule rec {
pname = "q";
2023-02-19 21:09:20 +00:00
version = "0.9.0";
2022-06-09 19:58:46 +00:00
src = pkgs.fetchFromGitHub {
owner = "natesales";
repo = pname;
rev = "v${version}";
2023-02-19 21:09:20 +00:00
sha256 = "sha256-WPVHMAau3+0jcIrRhRL5dy6h+J13LKj5GwQMJi7hGvo=";
2022-06-09 19:58:46 +00:00
};
2023-02-19 21:09:20 +00:00
vendorSha256 = "sha256-0Yd8y1SkxmfIFZuSheMGQnurlFv3sxkSDgGrQJLR3iU=";
2022-06-09 19:58:46 +00:00
2022-06-09 20:06:29 +00:00
ldflags = "-s -w -X main.version=release";
2022-06-09 19:58:46 +00:00
doCheck = false;
meta = with lib; {
description = "A tiny command line DNS client with support for UDP, TCP, DoT, DoH, DoQ and ODoH.";
homepage = "https://github.com/natesales/q";
license = [ licenses.gpl3Only ];
2022-07-31 18:41:26 +00:00
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
2022-06-09 19:58:46 +00:00
};
}