q: Init at 0.8.2

This commit is contained in:
Janne Heß 2022-08-17 21:58:39 +02:00
parent 19c1a7400a
commit f0f46e03ba
No known key found for this signature in database
GPG Key ID: 69165158F05265DF
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "q";
version = "0.8.2";
src = fetchFromGitHub {
owner = "natesales";
repo = "q";
rev = "v${version}";
sha256 = "sha256-Esg2i8UNT+SuW9+jsnVEOt1ot822CamZ3JoR8ReY0+4=";
};
vendorHash = "sha256-oarXbxROTd7knHr9GKlrPnnS6ehkps2ZYYsUS9cn6ek=";
doCheck = false; # tries to resolve DNS
meta = {
description = "A tiny and feature-rich command line DNS client with support for UDP, TCP, DoT, DoH, DoQ, and ODoH";
homepage = "https://github.com/natesales/q";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.das_j ];
};
}

View File

@ -1282,6 +1282,8 @@ with pkgs;
pferd = callPackage ../tools/misc/pferd {};
q = callPackage ../tools/networking/q {};
qFlipper = libsForQt515.callPackage ../tools/misc/qflipper { };
quich = callPackage ../tools/misc/quich { } ;