2017-06-15 03:40:24 -07:00
|
|
|
{ stdenv, fetchFromGitHub , cairomm, cmake, libjack2, libpthreadstubs, libXdmcp, libxshmfence, libsndfile, lv2, ntk, pkgconfig }:
|
2015-05-07 08:51:05 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "artyFX";
|
2020-06-03 07:36:42 -07:00
|
|
|
# Fix build with lv2 1.18: https://github.com/openAVproductions/openAV-ArtyFX/pull/41/commits/492587461b50d140455aa3c98d915eb8673bebf0
|
|
|
|
version = "unstable-2020-04-28";
|
2015-05-07 08:51:05 -07:00
|
|
|
|
2017-06-15 03:40:24 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openAVproductions";
|
|
|
|
repo = "openAV-ArtyFX";
|
2020-06-03 07:36:42 -07:00
|
|
|
rev = "492587461b50d140455aa3c98d915eb8673bebf0";
|
|
|
|
sha256 = "0wwg8ivnpyy0235bapjy4g0ij85zq355jwi6c1nkrac79p4z9ail";
|
2015-05-07 08:51:05 -07:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ cairomm cmake libjack2 libpthreadstubs libXdmcp libxshmfence libsndfile lv2 ntk ];
|
2015-05-07 08:51:05 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://openavproductions.com/artyfx/";
|
2015-05-07 08:51:05 -07:00
|
|
|
description = "A LV2 plugin bundle of artistic realtime effects";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
2018-12-09 14:07:59 -08:00
|
|
|
# Build uses `-msse` and `-mfpmath=sse`
|
|
|
|
badPlatforms = [ "aarch64-linux" ];
|
2015-05-07 08:51:05 -07:00
|
|
|
};
|
|
|
|
}
|