mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
commit
3b729f8707
22
pkgs/development/tools/fq/default.nix
Normal file
22
pkgs/development/tools/fq/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user