3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/tauon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

140 lines
3.1 KiB
Nix
Raw Normal View History

2021-09-05 02:24:45 +01:00
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, python3Packages
, ffmpeg
, flac
2022-05-22 01:13:26 +01:00
, libjxl
2022-02-05 18:44:11 +00:00
, librsvg
2021-09-05 02:24:45 +01:00
, gobject-introspection
, gtk3
2022-07-28 22:24:20 +01:00
, kissfft
2021-09-05 02:24:45 +01:00
, libnotify
, libsamplerate
, libvorbis
2022-07-28 22:24:20 +01:00
, miniaudio
2021-09-05 02:24:45 +01:00
, mpg123
, libopenmpt
, opusfile
2022-05-22 01:13:26 +01:00
, wavpack
2021-09-05 02:24:45 +01:00
, pango
, pulseaudio
, withDiscordRPC ? false
2021-09-05 02:24:45 +01:00
}:
stdenv.mkDerivation rec {
pname = "tauon";
2022-12-23 02:47:24 +00:00
version = "7.4.7";
2021-09-05 02:24:45 +01:00
src = fetchFromGitHub {
owner = "Taiko2k";
repo = "TauonMusicBox";
rev = "v${version}";
2022-12-23 02:47:24 +00:00
sha256 = "sha256-WUHMXsbnNaDlV/5bCOPMadJKWoF5i2UlFf9fcX6GCZ0=";
2021-09-05 02:24:45 +01:00
};
2022-07-28 22:24:20 +01:00
postUnpack = ''
rmdir source/src/phazor/kissfft
ln -s ${kissfft.src} source/src/phazor/kissfft
rmdir source/src/phazor/miniaudio
ln -s ${miniaudio.src} source/src/phazor/miniaudio
'';
2021-09-05 02:24:45 +01:00
postPatch = ''
substituteInPlace tauon.py \
--replace 'install_mode = False' 'install_mode = True' \
2022-02-05 18:44:11 +00:00
--replace 'install_directory = os.path.dirname(os.path.abspath(__file__))' 'install_directory = "${placeholder "out"}/share/tauon"'
2021-09-05 02:24:45 +01:00
substituteInPlace t_modules/t_main.py \
--replace 'install_mode = False' 'install_mode = True' \
--replace 'libopenmpt.so' '${lib.getLib libopenmpt}/lib/libopenmpt.so' \
--replace 'lib/libphazor.so' '../../lib/libphazor.so'
substituteInPlace t_modules/t_phazor.py \
--replace 'lib/libphazor.so' '../../lib/libphazor.so'
patchShebangs compile-phazor.sh
2022-02-06 13:44:34 +00:00
substituteInPlace extra/tauonmb.desktop --replace 'Exec=/opt/tauon-music-box/tauonmb.sh' 'Exec=${placeholder "out"}/bin/tauon'
2021-09-05 02:24:45 +01:00
'';
postBuild = ''
./compile-phazor.sh
'';
nativeBuildInputs = [
pkg-config
python3Packages.wrapPython
];
buildInputs = [
flac
gobject-introspection
gtk3
libnotify
libopenmpt
2022-02-05 18:44:11 +00:00
librsvg
2021-09-05 02:24:45 +01:00
libsamplerate
libvorbis
mpg123
opusfile
pango
2022-05-22 01:13:26 +01:00
wavpack
2021-09-05 02:24:45 +01:00
];
pythonPath = with python3Packages; [
2022-02-05 18:44:11 +00:00
beautifulsoup4
gst-python
2021-09-05 02:24:45 +01:00
dbus-python
isounidecode
2022-05-22 01:13:26 +01:00
libjxl
2021-09-05 02:24:45 +01:00
musicbrainzngs
mutagen
2022-05-22 01:13:26 +01:00
natsort
2021-09-05 02:24:45 +01:00
pillow
2022-02-05 18:44:11 +00:00
plexapi
2021-09-05 02:24:45 +01:00
pulsectl
pycairo
2022-05-22 01:13:26 +01:00
PyChromecast
2021-09-05 02:24:45 +01:00
pylast
pygobject3
pylyrics
pysdl2
requests
send2trash
2022-02-05 18:44:11 +00:00
setproctitle
] ++ lib.optional withDiscordRPC pypresence;
2021-09-05 02:24:45 +01:00
makeWrapperArgs = [
"--prefix PATH : ${lib.makeBinPath [ffmpeg]}"
2022-07-12 23:03:36 +01:00
"--prefix LD_LIBRARY_PATH : ${pulseaudio}/lib"
2021-09-05 02:24:45 +01:00
"--prefix PYTHONPATH : $out/share/tauon"
"--set GI_TYPELIB_PATH $GI_TYPELIB_PATH"
];
installPhase = ''
install -Dm755 tauon.py $out/bin/tauon
mkdir -p $out/share/tauon
cp -r lib $out
cp -r assets input.txt t_modules theme templates $out/share/tauon
2021-09-05 02:24:45 +01:00
wrapPythonPrograms
2022-02-06 13:44:34 +00:00
mkdir -p $out/share/applications
install -Dm755 extra/tauonmb.desktop $out/share/applications/tauonmb.desktop
mkdir -p $out/share/icons/hicolor/scalable/apps
install -Dm644 extra/tauonmb{,-symbolic}.svg $out/share/icons/hicolor/scalable/apps
2022-07-12 23:03:36 +01:00
'';
2021-09-05 02:24:45 +01:00
meta = with lib; {
description = "The Linux desktop music player from the future";
homepage = "https://tauonmusicbox.rocks/";
changelog = "https://github.com/Taiko2k/TauonMusicBox/releases/tag/v${version}";
2021-09-05 02:24:45 +01:00
license = licenses.gpl3;
2022-10-01 22:11:31 +01:00
maintainers = with maintainers; [ jansol ];
2021-09-05 02:24:45 +01:00
platforms = platforms.linux;
};
}