mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
cadence: fix dbus,libjack and missing dependancies
This commit is contained in:
parent
563b480b6f
commit
7e63e254a1
@ -1,15 +1,23 @@
|
||||
{ stdenv
|
||||
, mkDerivation
|
||||
, a2jmidid
|
||||
, coreutils
|
||||
, lib
|
||||
, libjack2
|
||||
, fetchpatch
|
||||
, fetchzip
|
||||
, jack_capture
|
||||
, pkgconfig
|
||||
, pulseaudio
|
||||
, qtbase
|
||||
, makeWrapper
|
||||
, python3Packages
|
||||
, mkDerivation
|
||||
, python3
|
||||
}:
|
||||
#ladish missing, claudia can't work.
|
||||
#pulseaudio needs fixes (patchShebangs .pa ...)
|
||||
#desktop needs icons and exec fixing.
|
||||
|
||||
mkDerivation rec {
|
||||
mkDerivation rec {
|
||||
version = "0.9.1";
|
||||
pname = "cadence";
|
||||
|
||||
@ -26,12 +34,25 @@
|
||||
})
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
libjackso=$(realpath ${lib.makeLibraryPath [libjack2]}/libjack.so.0);
|
||||
substituteInPlace ./src/jacklib.py --replace libjack.so.0 $libjackso
|
||||
substituteInPlace ./src/cadence.py --replace "/usr/bin/pulseaudio" \
|
||||
"${lib.makeBinPath[pulseaudio]}/pulseaudio"
|
||||
substituteInPlace ./c++/jackbridge/JackBridge.cpp --replace libjack.so.0 $libjackso
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgconfig
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
jack_capture
|
||||
((python3.withPackages (ps: with ps; [
|
||||
pyqt5
|
||||
dbus-python
|
||||
])))
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
@ -39,10 +60,6 @@
|
||||
"SYSCONFDIR=${placeholder "out"}/etc"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
pyqt5_with_qtwebkit
|
||||
];
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
||||
# Replace with our own wrappers. They need to be changed manually since it wouldn't work otherwise.
|
||||
@ -65,10 +82,8 @@
|
||||
};
|
||||
in lib.mapAttrsToList (script: source: ''
|
||||
rm -f ${script}
|
||||
makeWrapper ${python3Packages.python.interpreter} ${script} \
|
||||
--set PYTHONPATH "$PYTHONPATH:${outRef}/share/cadence" \
|
||||
''${qtWrapperArgs[@]} \
|
||||
--add-flags "-O ${source}"
|
||||
makeQtWrapper ${source} ${script} \
|
||||
--prefix PATH : "${lib.makeBinPath [jack_capture]}"
|
||||
'') scriptAndSource;
|
||||
|
||||
meta = {
|
||||
|
@ -18286,7 +18286,7 @@ in
|
||||
|
||||
azpainter = callPackage ../applications/graphics/azpainter { };
|
||||
|
||||
cadence = libsForQt5.callPackage ../applications/audio/cadence { };
|
||||
cadence = qt5.callPackage ../applications/audio/cadence { };
|
||||
|
||||
milkytracker = callPackage ../applications/audio/milkytracker { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user