Remove tap-plugins

This commit is contained in:
jalr 2021-11-08 21:57:36 +00:00
parent d16dddfe12
commit dbac505917

View file

@ -1,32 +0,0 @@
{ lib
, stdenv
, fetchFromGitHub
, patchelf
, pkgs
}:
stdenv.mkDerivation rec {
pname = "tap-plugins";
version = "1.0.1";
# nix-prefetch-github tomszilagyi tap-plugins --rev v1.0.1
src = fetchFromGitHub {
owner = "tomszilagyi";
repo = "tap-plugins";
rev = "v${version}";
sha256 = "0c6qhyf8smlypc36vmpr42dm3mrzk6pg9cc9r0vx22qbrd5zfpjw";
};
nativeBuildInputs = [
patchelf
];
installPhase = ''
runHook perInstall
make install INSTALL_PLUGINS_DIR=$out/lib/ladspa INSTALL_LRDF_DIR=$out/share/ladspa/rdf
runHook postInstall
'';
}