2021-12-08 21:11:21 +00:00
|
|
|
{ lib, stdenv, fetchurl, lv2, pkg-config, python3, wafHook }:
|
2015-05-12 11:49:08 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fomp";
|
2021-01-29 22:16:52 +00:00
|
|
|
version = "1.2.2";
|
2015-05-12 11:49:08 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2021-01-29 22:16:52 +00:00
|
|
|
sha256 = "sha256-xnGijydiO3B7BjSlryFuH1j/OPio9hCYbniq2IXp2W8=";
|
2015-05-12 11:49:08 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config wafHook ];
|
2021-12-08 21:11:21 +00:00
|
|
|
buildInputs = [ lv2 python3 ];
|
2015-05-12 11:49:08 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-02-06 10:45:01 +00:00
|
|
|
homepage = "https://drobilla.net/software/fomp.html";
|
2015-05-12 11:49:08 +00:00
|
|
|
description = "An LV2 port of the MCP, VCO, FIL, and WAH plugins by Fons Adriaensen";
|
2022-02-06 10:45:01 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2015-05-12 11:49:08 +00:00
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|