Files
nixpkgs/pkgs/by-name/fo/fomp/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

52 lines
974 B
Nix

{
lib,
stdenv,
fetchFromGitLab,
fetchpatch2,
lv2,
lv2lint,
pkg-config,
meson,
ninja,
}:
stdenv.mkDerivation rec {
pname = "fomp";
version = "1.2.4";
src = fetchFromGitLab {
owner = "drobilla";
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 = [
pkg-config
meson
ninja
lv2lint
];
buildInputs = [
lv2
];
strictDeps = true;
meta = with lib; {
homepage = "https://drobilla.net/software/fomp.html";
description = "LV2 port of the MCP, VCO, FIL, and WAH plugins by Fons Adriaensen";
license = licenses.gpl2Plus;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
};
}