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, buildGoPackage, fetchFromGitHub }:
2
3buildGoPackage rec {
4 pname = "jid";
5 version = "0.7.6";
6
7 goPackagePath = "github.com/simeji/jid";
8
9 src = fetchFromGitHub {
10 owner = "simeji";
11 repo = "jid";
12 rev = "v${version}";
13 sha256 = "15fgi7cpq5bg2lnpr7rip359xwj2kvlj6j2qzi837c26adnw973x";
14 };
15
16 goDeps = ./deps.nix;
17
18 meta = {
19 description = "A command-line tool to incrementally drill down JSON";
20 homepage = "https://github.com/simeji/jid";
21 license = lib.licenses.mit;
22 maintainers = with lib.maintainers; [ stesie ];
23 };
24}