From d5f4a1716e8d088912308ace57007ff31adf2c93 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 15 Aug 2021 11:18:28 +0200 Subject: bpb: init at unstable-2018-07-27 https://without.boats/blog/signing-commits-without-gpg/ --- pkgs/tools/security/bpb/default.nix | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pkgs/tools/security/bpb/default.nix (limited to 'pkgs/tools/security/bpb') diff --git a/pkgs/tools/security/bpb/default.nix b/pkgs/tools/security/bpb/default.nix new file mode 100644 index 0000000000000..121c5674c08c5 --- /dev/null +++ b/pkgs/tools/security/bpb/default.nix @@ -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 ]; + }; +} -- cgit 1.4.1