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

26 lines
693 B
Nix
Raw Normal View History

2023-05-10 23:04:05 +00:00
{ pkgs, lib }:
2022-06-09 19:58:46 +00:00
2023-10-21 11:04:56 +00:00
pkgs.buildGo121Module rec {
2022-06-09 19:58:46 +00:00
pname = "q";
2023-12-16 18:14:40 +00:00
version = "0.19.1";
2022-06-09 19:58:46 +00:00
src = pkgs.fetchFromGitHub {
owner = "natesales";
repo = pname;
rev = "v${version}";
2023-12-16 18:14:40 +00:00
sha256 = "sha256-PNCpETT39z2As05XVUrCBlIzTi/ml/1AwmYVFGDJvGA=";
2022-06-09 19:58:46 +00:00
};
2023-12-26 11:59:53 +00:00
vendorHash = "sha256-ma7x0sm27eT5Ph57B/wsmCxU2nmA4G4h1iOKjXC2EYY=";
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
};
}