mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #170286 from Quentin-M/init-faq
faq: init at unstable-2022-01-09
This commit is contained in:
commit
458eb50c49
@ -13497,6 +13497,12 @@
|
||||
githubId = 18196237;
|
||||
name = "Quentin Inkling";
|
||||
};
|
||||
quentin-m = {
|
||||
email = "me+nix@quentin-machu.fr";
|
||||
github = "Quentin-M";
|
||||
githubId = 1332289;
|
||||
name = "Quentin Machu";
|
||||
};
|
||||
qyliss = {
|
||||
email = "hi@alyssa.is";
|
||||
github = "alyssais";
|
||||
|
48
pkgs/development/tools/faq/default.nix
Normal file
48
pkgs/development/tools/faq/default.nix
Normal file
@ -0,0 +1,48 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, jq
|
||||
, oniguruma
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "faq";
|
||||
# Latest git release (0.0.7) presents vendor issues - using latest commit instead.
|
||||
version = "unstable-2022-01-09";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jzelinskie";
|
||||
repo = "faq";
|
||||
rev = "594bb8e15dc4070300f39c168354784988646231";
|
||||
sha256 = "1lqrchj4sj16n6y5ljsp8v4xmm57gzkavbddq23dhlgkg2lfyn91";
|
||||
};
|
||||
vendorSha256 = "sha256-731eINkboZiuPXX/HQ4r/8ogLedKBWx1IV7BZRKwU3A";
|
||||
|
||||
buildInputs = [
|
||||
jq
|
||||
oniguruma
|
||||
];
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X github.com/jzelinskie/faq/internal/version.Version=${version}"
|
||||
];
|
||||
|
||||
tags = [
|
||||
"netgo"
|
||||
];
|
||||
|
||||
subPackages = [
|
||||
"cmd/faq"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "faq is a tool intended to be a more flexible jq, supporting additional formats";
|
||||
homepage = "https://github.com/jzelinskie/faq";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ quentin-m ];
|
||||
};
|
||||
}
|
@ -587,6 +587,8 @@ with pkgs;
|
||||
|
||||
expressvpn = callPackage ../applications/networking/expressvpn { };
|
||||
|
||||
faq = callPackage ../development/tools/faq { };
|
||||
|
||||
figma-agent = callPackage ../applications/graphics/figma-agent { };
|
||||
|
||||
figma-linux = callPackage ../applications/graphics/figma-linux { };
|
||||
|
Loading…
Reference in New Issue
Block a user