Skip to content

Commit

Permalink
bpb: init at unstable-2018-07-27
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Aug 15, 2021
1 parent 4138cbd commit d5f4a17
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/tools/security/bpb/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ stdenv
, lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
pname = "bpb";
version = "unstable-2018-07-27";

src = fetchFromGitHub {
owner = "withoutboats";
repo = "bpb";
rev = "b1ef5ca1d2dea0e2ec0b1616f087f110ea17adfa";
sha256 = "sVfM8tlAsF4uKLxl3g/nSYgOx+znHIdPalSIiCd18o4=";
};

cargoSha256 = "7cARRJWRxF1kMySX6KcB6nrVf8k1p/nr3OyAwNLmztc=";

# a nightly compiler is required unless we use this cheat code.
RUSTC_BOOTSTRAP = 1;

meta = with lib; {
description = "Tool to automatically sign git commits, replacing gpg for that purpose";
homepage = "https://github.com/withoutboats/bpb";
license = licenses.mit;
maintainers = with maintainers; [ jtojnar ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2067,6 +2067,8 @@ with pkgs;
bozohttpd = callPackage ../servers/http/bozohttpd { };
bozohttpd-minimal = callPackage ../servers/http/bozohttpd { minimal = true; };

bpb = callPackage ../tools/security/bpb { };

bpytop = callPackage ../tools/system/bpytop { };

brasero-original = lowPrio (callPackage ../tools/cd-dvd/brasero { });
Expand Down

0 comments on commit d5f4a17

Please sign in to comment.