nixpkgs/pkgs/tools/misc/boltbrowser/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
594 B
Nix
Raw Normal View History

2021-03-19 21:18:41 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "boltbrowser";
2023-04-02 06:58:48 +00:00
version = "2.2";
2021-03-19 21:18:41 +00:00
src = fetchFromGitHub {
owner = "br0xen";
repo = pname;
rev = version;
2023-04-02 06:58:48 +00:00
sha256 = "sha256-3t0U1bSJbo3RJZe+PwaUeuzSt23Gs++WRe/uehfa4cA=";
2021-03-19 21:18:41 +00:00
};
2023-04-02 06:58:48 +00:00
vendorHash = "sha256-lLSjAO0sK2zwl+id/e15XWYbLPCa7qK8J6tdvaBMLPs=";
2021-03-19 21:18:41 +00:00
meta = with lib; {
description = "CLI Browser for BoltDB files";
homepage = "https://github.com/br0xen/boltbrowser";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
2023-11-27 01:17:53 +00:00
mainProgram = "boltbrowser";
2021-03-19 21:18:41 +00:00
};
}