27 lines
885 B
Nix
27 lines
885 B
Nix
|
{ stdenv, fetchFromGitHub , cairomm, cmake, libjack2, libpthreadstubs, libXdmcp, libxshmfence, libsndfile, lv2, ntk, pkgconfig }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "artyFX";
|
||
|
version = "1.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "openAVproductions";
|
||
|
repo = "openAV-ArtyFX";
|
||
|
rev = "release-${version}";
|
||
|
sha256 = "012hcy1mxl7gs2lipfcqp5x0xv1azb9hjrwf0h59yyxnzx96h7c9";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ pkgconfig ];
|
||
|
buildInputs = [ cairomm cmake libjack2 libpthreadstubs libXdmcp libxshmfence libsndfile lv2 ntk ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "http://openavproductions.com/artyfx/";
|
||
|
description = "A LV2 plugin bundle of artistic realtime effects";
|
||
|
license = licenses.gpl2;
|
||
|
maintainers = [ maintainers.magnetophon ];
|
||
|
platforms = platforms.linux;
|
||
|
# Build uses `-msse` and `-mfpmath=sse`
|
||
|
badPlatforms = [ "aarch64-linux" ];
|
||
|
};
|
||
|
}
|