fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib
2, buildGoModule
3, fetchFromGitHub
4, fq
5, testers
6}:
7
8buildGoModule rec {
9 pname = "fq";
10 version = "0.11.0";
11
12 src = fetchFromGitHub {
13 owner = "wader";
14 repo = "fq";
15 rev = "v${version}";
16 hash = "sha256-C9YvAHzpNwOVbFWxmdT5BUwsLug7k6ZLYboYJTgp82I=";
17 };
18
19 vendorHash = "sha256-liNRrmcTbN9mLWvgcEFZbgBPAHFGCF/KMV6KwRBWgoU=";
20
21 ldflags = [
22 "-s"
23 "-w"
24 "-X main.version=${version}"
25 ];
26
27 subPackages = [ "." ];
28
29 passthru.tests = testers.testVersion { package = fq; };
30
31 meta = with lib; {
32 description = "jq for binary formats";
33 mainProgram = "fq";
34 homepage = "https://github.com/wader/fq";
35 license = licenses.mit;
36 maintainers = with maintainers; [ siraben ];
37 };
38}