e86b1b9f56
Furthermore, this package needs to either be dropped or updated. The version packaged is old, and the project has been abandoned by upstream.
37 lines
825 B
Nix
37 lines
825 B
Nix
{ stdenv, lib, fetchgit, python, gyp, utillinux }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bud-${version}";
|
|
|
|
version = "0.34.1";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/indutny/bud.git";
|
|
rev = "b112852c9667632f692d2ce3dcd9a8312b61155a";
|
|
sha256 = "08yr6l4lc2m6rng06253fcaznf6sq0v053wfr8bbym42c32z0xdh";
|
|
};
|
|
|
|
buildInputs = [
|
|
python gyp
|
|
] ++ lib.optional stdenv.isLinux utillinux;
|
|
|
|
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 ];
|
|
};
|
|
}
|