3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/gxplugins-lv2/default.nix

35 lines
905 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, xorg, xorgproto, cairo, lv2, pkg-config }:
2018-10-31 17:39:34 +00:00
stdenv.mkDerivation rec {
pname = "GxPlugins.lv2";
2021-05-22 13:35:45 +01:00
version = "0.9";
2018-10-31 17:39:34 +00:00
src = fetchFromGitHub {
owner = "brummer10";
repo = pname;
rev = "v${version}";
2021-05-22 13:35:45 +01:00
sha256 = "02fksl8wr443ygwgcd1c2zab8kp67a6ps12k71ysqx7szv4zq877";
2018-10-31 17:39:34 +00:00
fetchSubmodules = true;
};
nativeBuildInputs = [ pkg-config ];
2018-10-31 17:39:34 +00:00
buildInputs = [
xorg.libX11 xorgproto cairo lv2
2018-10-31 17:39:34 +00:00
];
installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ];
2019-07-15 19:46:56 +01:00
configurePhase = ''
for i in GxBoobTube GxValveCaster; do
substituteInPlace $i.lv2/Makefile --replace "\$(shell which echo) -e" "echo -e"
done
'';
meta = with lib; {
homepage = "https://github.com/brummer10/GxPlugins.lv2";
2018-10-31 17:39:34 +00:00
description = "A set of extra lv2 plugins from the guitarix project";
maintainers = [ maintainers.magnetophon ];
2021-05-22 13:35:45 +01:00
license = licenses.gpl3Plus;
2018-10-31 17:39:34 +00:00
};
}