2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2018-07-08 23:12:14 +01:00
|
|
|
, fetchFromGitHub
|
2021-03-28 22:58:58 +01:00
|
|
|
, fetchpatch
|
2018-07-08 23:12:14 +01:00
|
|
|
, meson
|
|
|
|
, ninja
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2018-07-31 10:19:21 +01:00
|
|
|
, itstool
|
2018-09-03 22:17:52 +01:00
|
|
|
, python3
|
2018-07-08 23:12:14 +01:00
|
|
|
, libxml2
|
|
|
|
, desktop-file-utils
|
|
|
|
, wrapGAppsHook
|
|
|
|
, gst_all_1
|
2021-02-09 23:48:37 +00:00
|
|
|
, pipewire
|
2018-07-08 23:12:14 +01:00
|
|
|
, gtk3
|
|
|
|
, glib
|
|
|
|
, glibmm
|
|
|
|
, gtkmm3
|
|
|
|
, lilv
|
|
|
|
, lv2
|
|
|
|
, serd
|
|
|
|
, sord
|
|
|
|
, sratom
|
|
|
|
, libbs2b
|
2018-07-14 11:57:31 +01:00
|
|
|
, libsamplerate
|
|
|
|
, libsndfile
|
2018-07-31 10:19:21 +01:00
|
|
|
, libebur128
|
2020-12-06 22:30:56 +00:00
|
|
|
, rnnoise
|
2018-07-08 23:12:14 +01:00
|
|
|
, boost
|
2019-01-03 18:34:43 +00:00
|
|
|
, dbus
|
2018-07-14 11:57:31 +01:00
|
|
|
, fftwFloat
|
2018-07-08 23:12:14 +01:00
|
|
|
, calf
|
2018-07-14 18:48:36 +01:00
|
|
|
, zita-convolver
|
2018-07-08 23:12:14 +01:00
|
|
|
, zam-plugins
|
|
|
|
, rubberband
|
2019-01-28 00:13:57 +00:00
|
|
|
, lsp-plugins
|
2018-07-08 23:12:14 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
lv2Plugins = [
|
|
|
|
calf # limiter, compressor exciter, bass enhancer and others
|
2019-01-28 00:13:57 +00:00
|
|
|
lsp-plugins # delay
|
2018-07-08 23:12:14 +01:00
|
|
|
];
|
|
|
|
ladspaPlugins = [
|
|
|
|
rubberband # pitch shifting
|
|
|
|
zam-plugins # maximizer
|
|
|
|
];
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-01-03 18:34:43 +00:00
|
|
|
pname = "pulseeffects";
|
2021-04-22 17:23:54 +01:00
|
|
|
version = "5.0.3";
|
2018-07-08 23:12:14 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wwmm";
|
|
|
|
repo = "pulseeffects";
|
|
|
|
rev = "v${version}";
|
2021-04-22 17:23:54 +01:00
|
|
|
sha256 = "1dicvq17vajk3vr4g1y80599ahkw0dp5ynlany1cfljfjz40s8sx";
|
2018-07-08 23:12:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2018-07-08 23:12:14 +01:00
|
|
|
libxml2
|
2018-07-31 10:19:21 +01:00
|
|
|
itstool
|
2018-09-03 22:17:52 +01:00
|
|
|
python3
|
2018-07-08 23:12:14 +01:00
|
|
|
desktop-file-utils
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2021-02-09 23:48:37 +00:00
|
|
|
pipewire
|
2018-07-08 23:12:14 +01:00
|
|
|
glib
|
|
|
|
glibmm
|
|
|
|
gtk3
|
|
|
|
gtkmm3
|
|
|
|
gst_all_1.gstreamer
|
2019-03-06 21:08:53 +00:00
|
|
|
gst_all_1.gst-plugins-base # gst-fft
|
2021-02-09 23:48:37 +00:00
|
|
|
gst_all_1.gst-plugins-good # spectrum plugin
|
2018-07-08 23:12:14 +01:00
|
|
|
gst_all_1.gst-plugins-bad
|
|
|
|
lilv lv2 serd sord sratom
|
|
|
|
libbs2b
|
2018-07-31 10:19:21 +01:00
|
|
|
libebur128
|
2018-07-14 11:57:31 +01:00
|
|
|
libsamplerate
|
|
|
|
libsndfile
|
2020-12-06 22:30:56 +00:00
|
|
|
rnnoise
|
2018-07-08 23:12:14 +01:00
|
|
|
boost
|
2019-01-03 18:34:43 +00:00
|
|
|
dbus
|
2018-07-14 11:57:31 +01:00
|
|
|
fftwFloat
|
2018-07-14 18:48:36 +01:00
|
|
|
zita-convolver
|
2018-07-08 23:12:14 +01:00
|
|
|
];
|
|
|
|
|
2021-03-28 22:58:58 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
# Fix build failure.
|
|
|
|
# https://github.com/wwmm/pulseeffects/pull/934
|
|
|
|
url = "https://github.com/wwmm/pulseeffects/commit/ab7354a6850d23840b4c9af212dbebf4f31a562f.patch";
|
|
|
|
sha256 = "1hd05xn6sp0xs632mqgwk19hl40kh2f69mx5mgzahysrj057w22c";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-07-08 23:12:14 +01:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson_post_install.py
|
|
|
|
patchShebangs meson_post_install.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(
|
2021-01-15 13:21:58 +00:00
|
|
|
--set LV2_PATH "${lib.makeSearchPath "lib/lv2" lv2Plugins}"
|
|
|
|
--set LADSPA_PATH "${lib.makeSearchPath "lib/ladspa" ladspaPlugins}"
|
2018-07-08 23:12:14 +01:00
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
2020-04-27 21:19:14 +01:00
|
|
|
# Meson is no longer able to pick up Boost automatically.
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/86131
|
2021-01-15 13:21:58 +00:00
|
|
|
BOOST_INCLUDEDIR = "${lib.getDev boost}/include";
|
|
|
|
BOOST_LIBRARYDIR = "${lib.getLib boost}/lib";
|
2020-04-27 21:19:14 +01:00
|
|
|
|
2021-03-28 22:58:58 +01:00
|
|
|
separateDebugInfo = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-07-08 23:12:14 +01:00
|
|
|
description = "Limiter, compressor, reverberation, equalizer and auto volume effects for Pulseaudio applications";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/wwmm/pulseeffects";
|
2021-02-09 23:48:37 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2018-07-08 23:12:14 +01:00
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
|
|
platforms = platforms.linux;
|
2019-05-02 15:03:34 +01:00
|
|
|
badPlatforms = [ "aarch64-linux" ];
|
2018-07-08 23:12:14 +01:00
|
|
|
};
|
|
|
|
}
|