Merge pull request #307473 from Scrumplex/pkgs/bpb/broken

bpb: mark as broken

authored by superherointj and committed by GitHub 8f27ccd7 def49846

+1 -34
-32
pkgs/tools/security/bpb/default.nix
··· 1 - { stdenv 2 - , lib 3 - , rustPlatform 4 - , fetchFromGitHub 5 - , Security 6 - }: 7 - 8 - rustPlatform.buildRustPackage rec { 9 - pname = "bpb"; 10 - version = "unstable-2018-07-27"; 11 - 12 - src = fetchFromGitHub { 13 - owner = "withoutboats"; 14 - repo = "bpb"; 15 - rev = "b1ef5ca1d2dea0e2ec0b1616f087f110ea17adfa"; 16 - sha256 = "sVfM8tlAsF4uKLxl3g/nSYgOx+znHIdPalSIiCd18o4="; 17 - }; 18 - 19 - cargoSha256 = "7cARRJWRxF1kMySX6KcB6nrVf8k1p/nr3OyAwNLmztc="; 20 - 21 - # a nightly compiler is required unless we use this cheat code. 22 - RUSTC_BOOTSTRAP = 1; 23 - 24 - buildInputs = lib.optional stdenv.isDarwin Security; 25 - 26 - meta = with lib; { 27 - description = "Tool to automatically sign git commits, replacing gpg for that purpose"; 28 - homepage = "https://github.com/withoutboats/bpb"; 29 - license = licenses.mit; 30 - maintainers = with maintainers; [ ]; 31 - }; 32 - }
+1
pkgs/top-level/aliases.nix
··· 131 131 boost174 = throw "boost174 has been deprecated in favor of the latest version"; # Added 2023-06-08 132 132 boost17x = throw "boost17x has been deprecated in favor of the latest version"; # Added 2023-07-13 133 133 boost18x = throw "boost18x has been deprecated in favor of the latest version"; # Added 2023-07-13 134 + bpb = throw "bpb has been removed as it is unmaintained and not compatible with recent Rust versions"; # Added 2024-04-30 134 135 bpftool = bpftools; # Added 2021-05-03 135 136 bpytop = throw "bpytop has been deprecated by btop"; # Added 2023-02-16 136 137 bro = throw "'bro' has been renamed to/replaced by 'zeek'"; # Converted to throw 2023-09-10
-2
pkgs/top-level/all-packages.nix
··· 4381 4381 bozohttpd = callPackage ../servers/http/bozohttpd { }; 4382 4382 bozohttpd-minimal = callPackage ../servers/http/bozohttpd { minimal = true; }; 4383 4383 4384 - bpb = callPackage ../tools/security/bpb { inherit (darwin.apple_sdk.frameworks) Security; }; 4385 - 4386 4384 brasero-original = lowPrio (callPackage ../tools/cd-dvd/brasero { }); 4387 4385 4388 4386 brasero = callPackage ../tools/cd-dvd/brasero/wrapper.nix { };