mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
Merge pull request #187162 from helsinki-systems/feat/q
q: Init at 0.8.2
This commit is contained in:
commit
29a242d4d6
24
pkgs/tools/networking/q/default.nix
Normal file
24
pkgs/tools/networking/q/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -1286,6 +1286,8 @@ with pkgs;
|
||||
|
||||
pferd = callPackage ../tools/misc/pferd {};
|
||||
|
||||
q = callPackage ../tools/networking/q {};
|
||||
|
||||
qFlipper = libsForQt515.callPackage ../tools/misc/qflipper { };
|
||||
|
||||
quich = callPackage ../tools/misc/quich { } ;
|
||||
|
Loading…
Reference in New Issue
Block a user