2018-11-11 21:20:41 +00:00
|
|
|
{ stdenv, fetchurl, fftwSinglePrec, lv2, pkgconfig, python, wafHook }:
|
2013-02-24 10:26:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mda-lv2";
|
2019-11-28 10:29:21 +00:00
|
|
|
version = "1.2.4";
|
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";
|
2019-11-28 10:29:21 +00:00
|
|
|
sha256 = "1a3cv6w5xby9yn11j695rbh3c4ih7rxfxmkca9s1324ljphh06m8";
|
2013-02-24 10:26:32 +00:00
|
|
|
};
|
|
|
|
|
2018-11-11 21:20:41 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ fftwSinglePrec lv2 python ];
|
2013-02-24 10:26:32 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://drobilla.net/software/mda-lv2/;
|
|
|
|
description = "An LV2 port of the MDA plugins by Paul Kellett";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|