mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #164044 from armeenm/remove-bud
This commit is contained in:
commit
00a74b870c
@ -1,39 +0,0 @@
|
||||
{ stdenv, lib, fetchFromGitHub, python2, util-linux }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "bud";
|
||||
version = "0.34.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "indutny";
|
||||
repo = "bud";
|
||||
rev = "b112852c9667632f692d2ce3dcd9a8312b61155a";
|
||||
sha256 = "sha256-sHXwxWCCVL8Wyo6PAjbA2jj7FXOjCAOezaYKRgk12SM=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
python2 python2.pkgs.gyp
|
||||
] ++ lib.optional stdenv.isLinux util-linux;
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
buildPhase = ''
|
||||
python ./gyp_bud -f make
|
||||
make -C out
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp out/Release/bud $out/bin
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A TLS terminating proxy";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
# Does not build on aarch64-linux.
|
||||
badPlatforms = [ "aarch64-linux" ];
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
};
|
||||
}
|
@ -118,6 +118,7 @@ mapAliases ({
|
||||
bird2 = bird; # Added 2022-02-21
|
||||
bird6 = throw "bird6 was dropped. Use bird instead, which has support for both ipv4/ipv6"; # Added 2022-02-21
|
||||
btrfsProgs = throw "'btrfsProgs' has been renamed to/replaced by 'btrfs-progs'"; # Converted to throw 2022-02-22
|
||||
bud = throw "bud has been removed: abandoned by upstream"; # Added 2022-03-14
|
||||
|
||||
# bitwarden_rs renamed to vaultwarden with release 1.21.0 (2021-04-30)
|
||||
bitwarden_rs = vaultwarden;
|
||||
|
@ -4100,8 +4100,6 @@ with pkgs;
|
||||
|
||||
btar = callPackage ../tools/backup/btar { };
|
||||
|
||||
bud = callPackage ../tools/networking/bud { };
|
||||
|
||||
bump2version = python3Packages.callPackage ../applications/version-management/git-and-tools/bump2version { };
|
||||
|
||||
bumpver = callPackage ../applications/version-management/bumpver { };
|
||||
|
Loading…
Reference in New Issue
Block a user