mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
26 lines
565 B
Nix
26 lines
565 B
Nix
|
{ lib
|
||
|
, buildGoModule
|
||
|
, fetchFromGitHub
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "boltbrowser";
|
||
|
version = "2.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "br0xen";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "17v3pv80dxs285d0b6x772h5cb4f0xg9n5p9jwlir5hjbfn1635i";
|
||
|
};
|
||
|
|
||
|
vendorSha256 = "1x28m72626cchnsasyxips8jaqs0l2p9jhjrdcgws144zm6fz3hv";
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "CLI Browser for BoltDB files";
|
||
|
homepage = "https://github.com/br0xen/boltbrowser";
|
||
|
license = with licenses; [ gpl3Only ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|