fomp: 1.2.2 -> 1.2.4 (#434696)

This commit is contained in:
dish 2025-08-18 07:48:52 -04:00 committed by GitHub
commit b37a900f07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,31 +1,46 @@
{ {
lib, lib,
stdenv, stdenv,
fetchurl, fetchFromGitLab,
fetchpatch2,
lv2, lv2,
lv2lint,
pkg-config, pkg-config,
python3, meson,
wafHook, ninja,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "fomp"; pname = "fomp";
version = "1.2.2"; version = "1.2.4";
src = fetchurl { src = fetchFromGitLab {
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2"; owner = "drobilla";
sha256 = "sha256-xnGijydiO3B7BjSlryFuH1j/OPio9hCYbniq2IXp2W8="; repo = "fomp";
tag = "v${version}";
hash = "sha256-8rkAV+RJS9vQV+9+swclAP0QBjBDT2tKeLWHxwpUrlk=";
}; };
patches = [
(fetchpatch2 {
url = "https://gitlab.com/drobilla/fomp/-/commit/f8e4e1e0b1abe3afd2ea17b13795bbe871fccece.patch";
hash = "sha256-uJpUwTEBOp0Zo7zKT9jekhtkg9okUvGTavLIQmNKutU=";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config
wafHook meson
ninja
lv2lint
]; ];
buildInputs = [ buildInputs = [
lv2 lv2
python3
]; ];
strictDeps = true;
meta = with lib; { meta = with lib; {
homepage = "https://drobilla.net/software/fomp.html"; homepage = "https://drobilla.net/software/fomp.html";
description = "LV2 port of the MCP, VCO, FIL, and WAH plugins by Fons Adriaensen"; description = "LV2 port of the MCP, VCO, FIL, and WAH plugins by Fons Adriaensen";