Merge pull request #151871 from siraben/fq

fq: init at 0.0.2
This commit is contained in:
Ben Siraphob 2021-12-23 17:09:39 +07:00 committed by GitHub
commit 3b729f8707
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildGo117Module, fetchFromGitHub }:
buildGo117Module rec {
pname = "fq";
version = "0.0.2";
src = fetchFromGitHub {
owner = "wader";
repo = "fq";
rev = "v${version}";
sha256 = "sha256-ykjt9MPkN5dgTaY2VhApNt5DKh9TFapMpoHwLdpOKcw=";
};
vendorSha256 = "sha256-89rSpxhP35wreo+0AqM+rDICCPchF+yFVvrTtZ2Xwr4=";
meta = with lib; {
description = "jq for binary formats";
homepage = "https://github.com/wader/fq";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
};
}

View File

@ -5424,6 +5424,8 @@ with pkgs;
mkFranzDerivation = callPackage ../applications/networking/instant-messengers/franz/generic.nix { };
};
fq = callPackage ../development/tools/fq { };
franz = callPackage ../applications/networking/instant-messengers/franz {
mkFranzDerivation = callPackage ../applications/networking/instant-messengers/franz/generic.nix { };
};