about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/faq/default.nix
blob: c955174a4affa4612b5c76397463d987e424e5d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ 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";
  };
  vendorHash = "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";
    mainProgram = "faq";
    homepage = "https://github.com/jzelinskie/faq";
    license = licenses.asl20;
    maintainers = with maintainers; [ quentin-m ];
  };
}