boltbrowser: init at 2.0

This commit is contained in:
Fabian Affolter 2021-03-19 22:18:41 +01:00
parent 537732b5a5
commit 86c2d1bf05
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ 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 ];
};
}

View file

@ -3136,6 +3136,8 @@ in
bash_unit = callPackage ../tools/misc/bash_unit { };
boltbrowser = callPackage ../tools/misc/boltbrowser { };
bsc = callPackage ../tools/compression/bsc {
inherit (llvmPackages) openmp;
};