2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, fftwSinglePrec, lv2, pkg-config, wafHook, python3 }:
|
2013-02-24 10:26:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mda-lv2";
|
2021-01-20 04:47:34 +00:00
|
|
|
version = "1.2.6";
|
2013-02-24 10:26:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2021-01-20 04:47:34 +00:00
|
|
|
sha256 = "sha256-zWYRcCSuBJzzrKg/npBKcCdyJOI6lp9yqcXQEKSYV9s=";
|
2013-02-24 10:26:32 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config wafHook python3 ];
|
2019-12-25 08:17:04 +00:00
|
|
|
buildInputs = [ fftwSinglePrec lv2 ];
|
2013-02-24 10:26:32 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://drobilla.net/software/mda-lv2/";
|
2013-02-24 10:26:32 +00:00
|
|
|
description = "An LV2 port of the MDA plugins by Paul Kellett";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|