qpaeq: init at 13.0
This commit is contained in:
parent
674efe45dd
commit
11a2d3925b
2 changed files with 56 additions and 0 deletions
54
pkgs/servers/pulseaudio/qpaeq.nix
Normal file
54
pkgs/servers/pulseaudio/qpaeq.nix
Normal file
|
@ -0,0 +1,54 @@
|
|||
{ mkDerivation
|
||||
, makeDesktopItem
|
||||
, python3
|
||||
, fetchurl
|
||||
, lib
|
||||
, pulseaudio
|
||||
}:
|
||||
|
||||
let
|
||||
desktopItem = makeDesktopItem {
|
||||
name = "qpaeq";
|
||||
exec = "@out@/bin/qpaeq";
|
||||
icon = "audio-volume-high";
|
||||
desktopName = "qpaeq";
|
||||
genericName = "Audio equalizer";
|
||||
categories = "Music;Sound;";
|
||||
startupNotify = "false";
|
||||
};
|
||||
in
|
||||
mkDerivation rec {
|
||||
pname = "qpaeq";
|
||||
inherit (pulseaudio) version src;
|
||||
|
||||
buildInputs = [
|
||||
((python3.withPackages (ps: with ps; [
|
||||
pyqt5
|
||||
dbus-python
|
||||
])))
|
||||
];
|
||||
|
||||
dontBuild = true;
|
||||
dontConfigure = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -D ./src/utils/qpaeq $out/bin/qpaeq
|
||||
install -D ${desktopItem}/share/applications/qpaeq.desktop $out/share/applications/qpaeq.desktop
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
sed "s|,sip|,PyQt5.sip|g" -i $out/bin/qpaeq
|
||||
wrapQtApp $out/bin/qpaeq
|
||||
sed "s|@out@|$out|g" -i $out/share/applications/qpaeq.desktop
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "An equalizer interface for pulseaudio's equalizer sinks";
|
||||
homepage = http://www.pulseaudio.org/;
|
||||
license = lib.licenses.lgpl2Plus;
|
||||
maintainers = with lib.maintainers; [ lovek323 mkg20001 ];
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
|
@ -15409,6 +15409,8 @@ in
|
|||
inherit (darwin.apple_sdk.frameworks) CoreServices AudioUnit Cocoa;
|
||||
};
|
||||
|
||||
qpaeq = qt5.callPackage ../servers/pulseaudio/qpaeq.nix { };
|
||||
|
||||
pulseaudioFull = pulseaudio.override {
|
||||
x11Support = true;
|
||||
jackaudioSupport = true;
|
||||
|
|
Loading…
Reference in a new issue