2021-01-19 07:50:56 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, xorg, xorgproto, cairo, lv2, pkg-config }:
|
2018-10-31 18:39:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "GxPlugins.lv2";
|
2020-06-07 01:36:00 +02:00
|
|
|
version = "0.8";
|
2018-10-31 18:39:34 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "brummer10";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-06-07 01:36:00 +02:00
|
|
|
sha256 = "11iv7bwvvspm74pisqvcpsxpg9xi6b08hq4i8q67mri4mvy9hmal";
|
2018-10-31 18:39:34 +01:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-10-31 18:39:34 +01:00
|
|
|
buildInputs = [
|
2018-12-31 04:40:47 +01:00
|
|
|
xorg.libX11 xorgproto cairo lv2
|
2018-10-31 18:39:34 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ];
|
|
|
|
|
2019-07-15 20:46:56 +02:00
|
|
|
configurePhase = ''
|
|
|
|
for i in GxBoobTube GxValveCaster; do
|
|
|
|
substituteInPlace $i.lv2/Makefile --replace "\$(shell which echo) -e" "echo -e"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/brummer10/GxPlugins.lv2";
|
2018-10-31 18:39:34 +01:00
|
|
|
description = "A set of extra lv2 plugins from the guitarix project";
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|