about summary refs log tree commit diff
path: root/pkgs/tools/misc/boltbrowser/default.nix
blob: 3bfbfa1adee5e0231c2fb57486fcdd4ba6dc0346 (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
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "boltbrowser";
  version = "2.1";

  src = fetchFromGitHub {
    owner = "br0xen";
    repo = pname;
    rev = version;
    sha256 = "sha256-Obfhxe0AI5m4UTvs28PMOrBxWuwMW7FY4DMI80Ez0Ws=";
  };

  vendorSha256 = "sha256-G47vTP2EBM0fa1lCma6gQGMlkb6xe620hYwZYcSpSPQ=";

  meta = with lib; {
    description = "CLI Browser for BoltDB files";
    homepage = "https://github.com/br0xen/boltbrowser";
    license = with licenses; [ gpl3Only ];
    maintainers = with maintainers; [ fab ];
  };
}