2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, fftwSinglePrec, lv2, pkg-config, wafHook, python3 }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "mda-lv2";
|
2021-03-09 03:18:52 +00:00
|
|
|
version = "1.2.6";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2021-03-09 03:18:52 +00:00
|
|
|
sha256 = "sha256-zWYRcCSuBJzzrKg/npBKcCdyJOI6lp9yqcXQEKSYV9s=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config wafHook python3 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ fftwSinglePrec lv2 ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2023-08-10 07:59:29 +00:00
|
|
|
homepage = "http://drobilla.net/software/mda-lv2.html";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "LV2 port of the MDA plugins by Paul Kellett";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|