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

26 lines
692 B
Nix
Raw Normal View History

2023-05-10 23:04:05 +00:00
{ pkgs, lib }:
2022-06-09 19:58:46 +00:00
pkgs.buildGoModule rec {
pname = "q";
2023-04-22 22:49:27 +00:00
version = "0.11.1";
2022-06-09 19:58:46 +00:00
src = pkgs.fetchFromGitHub {
owner = "natesales";
repo = pname;
rev = "v${version}";
2023-04-22 23:16:05 +00:00
sha256 = "sha256-kS3t4bAvxFoZBE5UMM5yJ0WbsN6MqkEYhkl8wiBJKQg=";
2022-06-09 19:58:46 +00:00
};
2023-04-22 22:49:27 +00:00
vendorSha256 = "sha256-jjhDD0qZh4QHjFO14+FsRFxEywByHB2gIxy/w3QOWBk=";
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
};
}