mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #116972 from fabaff/boltbrowser
boltbrowser: init at 2.0
This commit is contained in:
commit
0f53fe275e
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/misc/boltbrowser/default.nix
Normal file
25
pkgs/tools/misc/boltbrowser/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -3144,6 +3144,8 @@ in
|
|||
|
||||
bash_unit = callPackage ../tools/misc/bash_unit { };
|
||||
|
||||
boltbrowser = callPackage ../tools/misc/boltbrowser { };
|
||||
|
||||
bsc = callPackage ../tools/compression/bsc {
|
||||
inherit (llvmPackages) openmp;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue