71 lines
1.6 KiB
Nix
71 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
buildPythonApplication,
|
|
libjack2,
|
|
pyliblo,
|
|
pyqt5,
|
|
which,
|
|
bash,
|
|
qt5,
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "raysession";
|
|
version = "0.14.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Houston4444/RaySession/releases/download/v${version}/RaySession-${version}-source.tar.gz";
|
|
sha256 = "sha256-3+g1zdjGkxNEpyuKuxzhr2p9gkEFjYAso4fPedbjmlY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Fix installation path of xdg schemas.
|
|
substituteInPlace Makefile --replace '$(DESTDIR)/' '$(DESTDIR)$(PREFIX)/'
|
|
# Do not wrap an importable module with a shell script.
|
|
chmod -x src/daemon/desktops_memory.py
|
|
'';
|
|
|
|
format = "other";
|
|
|
|
nativeBuildInputs = [
|
|
pyqt5 # pyuic5 and pyrcc5 to build resources.
|
|
qt5.qttools # lrelease to build translations.
|
|
which # which to find lrelease.
|
|
qt5.wrapQtAppsHook
|
|
];
|
|
buildInputs = [
|
|
libjack2
|
|
bash
|
|
];
|
|
propagatedBuildInputs = [
|
|
pyliblo
|
|
pyqt5
|
|
];
|
|
|
|
dontWrapQtApps = true; # The program is a python script.
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
makeWrapperArgs = [
|
|
"--suffix"
|
|
"LD_LIBRARY_PATH"
|
|
":"
|
|
(lib.makeLibraryPath [ libjack2 ])
|
|
];
|
|
|
|
postFixup = ''
|
|
wrapPythonProgramsIn "$out/share/raysession/src" "$out $pythonPath"
|
|
for file in $out/bin/*; do
|
|
wrapQtApp "$file"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Houston4444/RaySession";
|
|
description = "Session manager for Linux musical programs";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|