nixpkgs/pkgs/by-name/ta/tauon/package.nix

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

153 lines
3.5 KiB
Nix
Raw Normal View History

2024-08-21 19:25:19 +00:00
{
lib,
stdenv,
fetchFromGitHub,
2024-08-21 19:46:58 +00:00
kissfft,
miniaudio,
2024-08-21 19:25:19 +00:00
pkg-config,
python3Packages,
2024-08-21 19:46:58 +00:00
gobject-introspection,
2024-08-21 19:25:19 +00:00
flac,
game-music-emu,
gtk3,
libappindicator,
libnotify,
2024-08-21 19:46:58 +00:00
libopenmpt,
librsvg,
2024-08-21 19:25:19 +00:00
libsamplerate,
libvorbis,
mpg123,
opusfile,
pango,
2024-08-15 20:11:29 +00:00
pipewire,
2024-08-21 19:46:58 +00:00
wavpack,
ffmpeg,
2024-08-21 19:25:19 +00:00
pulseaudio,
withDiscordRPC ? true,
2021-09-05 01:24:45 +00:00
}:
2023-06-11 13:20:52 +00:00
stdenv.mkDerivation (finalAttrs: {
2021-09-05 01:24:45 +00:00
pname = "tauon";
2024-09-05 21:19:07 +00:00
version = "7.8.3";
2021-09-05 01:24:45 +00:00
src = fetchFromGitHub {
owner = "Taiko2k";
2024-08-15 20:11:29 +00:00
repo = "Tauon";
2023-06-11 13:20:52 +00:00
rev = "v${finalAttrs.version}";
2024-09-05 21:19:07 +00:00
hash = "sha256-A7JRJ0Eh0ynuwPYZFLEeqWLf6OKdN59jM2vozdpSZC8=";
2021-09-05 01:24:45 +00:00
};
2022-07-28 21:24:20 +00: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 01:24:45 +00:00
postPatch = ''
substituteInPlace tauon.py \
--replace-fail 'install_mode = False' 'install_mode = True' \
--replace-fail 'install_directory = os.path.dirname(os.path.abspath(__file__))' 'install_directory = "${placeholder "out"}/share/tauon"'
2021-09-05 01:24:45 +00:00
substituteInPlace t_modules/t_main.py \
--replace-fail 'install_mode = False' 'install_mode = True' \
--replace-fail 'libopenmpt.so' '${lib.getLib libopenmpt}/lib/libopenmpt.so'
2021-09-05 01:24:45 +00:00
substituteInPlace t_modules/t_phazor.py \
2024-08-15 20:11:29 +00:00
--replace-fail 'lib/libphazor' '../../lib/libphazor'
2021-09-05 01:24:45 +00:00
2024-08-15 20:11:29 +00:00
substituteInPlace compile-phazor*.sh --replace-fail 'gcc' '${stdenv.cc.targetPrefix}cc'
2023-04-24 21:27:38 +00:00
substituteInPlace extra/tauonmb.desktop --replace-fail 'Exec=/opt/tauon-music-box/tauonmb.sh' 'Exec=${placeholder "out"}/bin/tauon'
2021-09-05 01:24:45 +00:00
'';
postBuild = ''
bash ./compile-phazor.sh
2024-08-15 20:11:29 +00:00
bash ./compile-phazor-pipewire.sh
2021-09-05 01:24:45 +00:00
'';
nativeBuildInputs = [
pkg-config
python3Packages.wrapPython
gobject-introspection
2021-09-05 01:24:45 +00:00
];
buildInputs = [
flac
2024-07-08 12:54:58 +00:00
game-music-emu
2021-09-05 01:24:45 +00:00
gtk3
libappindicator
2021-09-05 01:24:45 +00:00
libnotify
libopenmpt
2022-02-05 18:44:11 +00:00
librsvg
2021-09-05 01:24:45 +00:00
libsamplerate
libvorbis
mpg123
opusfile
pango
2024-08-15 20:11:29 +00:00
pipewire
2022-05-22 00:13:26 +00:00
wavpack
2021-09-05 01:24:45 +00:00
];
2024-08-21 19:25:19 +00:00
pythonPath =
with python3Packages;
[
beautifulsoup4
dbus-python
2024-08-15 20:11:29 +00:00
unidecode
jxlpy
2024-08-21 19:25:19 +00:00
musicbrainzngs
mutagen
natsort
pillow
plexapi
pycairo
pychromecast
pylast
pygobject3
pysdl2
requests
send2trash
setproctitle
]
++ lib.optional withDiscordRPC pypresence
2023-04-24 21:27:38 +00:00
++ lib.optional stdenv.hostPlatform.isLinux pulsectl;
2021-09-05 01:24:45 +00:00
makeWrapperArgs = [
2024-08-21 19:25:19 +00:00
"--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}"
"--prefix LD_LIBRARY_PATH : ${
lib.makeLibraryPath [
game-music-emu
pulseaudio
]
}"
2021-09-05 01:24:45 +00: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 01:24:45 +00: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 22:03:36 +00:00
'';
2021-09-05 01:24:45 +00:00
meta = with lib; {
description = "Linux desktop music player from the future";
mainProgram = "tauon";
2021-09-05 01:24:45 +00:00
homepage = "https://tauonmusicbox.rocks/";
2023-06-11 13:20:52 +00:00
changelog = "https://github.com/Taiko2k/TauonMusicBox/releases/tag/v${finalAttrs.version}";
2021-09-05 01:24:45 +00:00
license = licenses.gpl3;
2022-10-01 21:11:31 +00:00
maintainers = with maintainers; [ jansol ];
2023-04-24 21:27:38 +00:00
platforms = platforms.linux ++ platforms.darwin;
2021-09-05 01:24:45 +00:00
};
2023-06-11 13:20:52 +00:00
})