3
0
Fork 0
forked from mirrors/nixpkgs

fq: init at 0.0.2

This commit is contained in:
Ben Siraphob 2021-12-23 15:39:11 +07:00
parent 61a33921a0
commit 5a4e4e9151
No known key found for this signature in database
GPG key ID: 45F0E5D788143267
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 { };
};