1
0
Fork 0

Linux support

This commit is contained in:
Daniel Kempkens 2022-07-31 20:41:26 +02:00
parent 212d8f80c7
commit 7ad629e72d
2 changed files with 3 additions and 1 deletions

View file

@ -7,6 +7,8 @@
[
"aarch64-darwin"
"x86_64-darwin"
"aarch64-linux"
"x86_64-linux"
]
(system: import ./packages.nix {
inherit system;

View file

@ -20,6 +20,6 @@ pkgs.buildGoModule rec {
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 ];
platforms = [ "x86_64-darwin" "aarch64-darwin" ];
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
};
}