2019-12-25 00:17:04 -08:00
|
|
|
{ stdenv, fetchurl, fftwSinglePrec, lv2, pkgconfig, wafHook }:
|
2013-02-24 02:26:32 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "mda-lv2";
|
2019-11-28 02:29:21 -08:00
|
|
|
version = "1.2.4";
|
2013-02-24 02:26:32 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2019-11-28 02:29:21 -08:00
|
|
|
sha256 = "1a3cv6w5xby9yn11j695rbh3c4ih7rxfxmkca9s1324ljphh06m8";
|
2013-02-24 02:26:32 -08:00
|
|
|
};
|
|
|
|
|
2018-11-11 13:20:41 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ];
|
2019-12-25 00:17:04 -08:00
|
|
|
buildInputs = [ fftwSinglePrec lv2 ];
|
2013-02-24 02:26:32 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://drobilla.net/software/mda-lv2/";
|
2013-02-24 02:26:32 -08:00
|
|
|
description = "An LV2 port of the MDA plugins by Paul Kellett";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|