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