2018-11-11 21:20:41 +00:00
|
|
|
{ stdenv, fetchurl, lv2, pkgconfig, python2, wafHook }:
|
2015-05-12 12:49:08 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "fomp";
|
2020-02-08 09:14:43 +00:00
|
|
|
version = "1.2.0";
|
2015-05-12 12:49:08 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2020-02-08 09:14:43 +00:00
|
|
|
sha256 = "01ld6yjrqrki6zwac8lmwmqkr5rv0sdham4pfbfkjwck4hi1gqqw";
|
2015-05-12 12:49:08 +01:00
|
|
|
};
|
|
|
|
|
2018-11-11 21:20:41 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ lv2 python2 ];
|
2015-05-12 12:49:08 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://drobilla.net/software/fomp/;
|
|
|
|
description = "An LV2 port of the MCP, VCO, FIL, and WAH plugins by Fons Adriaensen";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|