luaPackages.pulseaudio: remove (#94939)

It's not maintained any more by upstream (by @doronbehar) and it doesn't
build correctly with `buildLuarocksPackage` (see #89767).
This commit is contained in:
Doron Behar 2020-08-08 16:43:13 +03:00 committed by GitHub
parent 5e7d581ffd
commit 039056386d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 28 deletions

View file

@ -79,5 +79,4 @@ say,,,,,
std__debug,std._debug,,,,
std_normalize,std.normalize,,,,
stdlib,,,,,vyp
pulseaudio,,,,,doronbehar
vstruct,,,,,

1 # nix name luarocks name server version luaversion maintainers
79 std__debug std._debug
80 std_normalize std.normalize
81 stdlib vyp
pulseaudio doronbehar
82 vstruct

View file

@ -1499,24 +1499,6 @@ stdlib = buildLuarocksPackage {
license.fullName = "MIT/X11";
};
};
pulseaudio = buildLuarocksPackage {
pname = "pulseaudio";
version = "0.2-1";
src = fetchurl {
url = "mirror://luarocks/pulseaudio-0.2-1.src.rock";
sha256 = "06w8fmwddrpm02yam818yi30gghw4ckb18zljjncy3x0zfijyhz7";
};
disabled = (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = with stdenv.lib; {
homepage = "https://github.com/doronbehar/lua-pulseaudio";
description = "Bindings to libpulse";
maintainers = with maintainers; [ doronbehar ];
license.fullName = "Apache v2.0";
};
};
vstruct = buildLuarocksPackage {
pname = "vstruct";
version = "2.0.2-1";

View file

@ -344,13 +344,4 @@ with super;
sourceRoot=./readline-2.6
'';
});
pulseaudio = super.pulseaudio.override({
buildInputs = [
pkgs.libpulseaudio
];
nativeBuildInputs = [
pkgs.pulseaudio pkgs.pkgconfig
];
});
}