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

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

26 lines
563 B
Nix
Raw Normal View History

2021-03-19 22:18:41 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "boltbrowser";
2022-05-09 06:02:33 +02:00
version = "2.1";
2021-03-19 22:18:41 +01:00
src = fetchFromGitHub {
owner = "br0xen";
repo = pname;
rev = version;
2022-05-09 06:02:33 +02:00
sha256 = "sha256-Obfhxe0AI5m4UTvs28PMOrBxWuwMW7FY4DMI80Ez0Ws=";
2021-03-19 22:18:41 +01:00
};
2022-05-09 06:02:33 +02:00
vendorSha256 = "sha256-G47vTP2EBM0fa1lCma6gQGMlkb6xe620hYwZYcSpSPQ=";
2021-03-19 22:18:41 +01:00
meta = with lib; {
description = "CLI Browser for BoltDB files";
homepage = "https://github.com/br0xen/boltbrowser";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}