2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub , cairomm, cmake, libjack2, libpthreadstubs, libXdmcp, libxshmfence, libsndfile, lv2, ntk, pkg-config }:
|
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";
|
2021-01-26 05:33:33 -08:00
|
|
|
rev = "8c542627d936a01b1d97825e7f26a8e95633f7aa";
|
2020-06-03 07:36:42 -07:00
|
|
|
sha256 = "0wwg8ivnpyy0235bapjy4g0ij85zq355jwi6c1nkrac79p4z9ail";
|
2015-05-07 08:51:05 -07:00
|
|
|
};
|
|
|
|
|
2020-12-30 23:48:55 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [ cairomm libjack2 libpthreadstubs libXdmcp libxshmfence libsndfile lv2 ntk ];
|
2015-05-07 08:51:05 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with 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
|
|
|
};
|
|
|
|
}
|