Merge pull request #178758 from alternateved/pkg/add-tidal-hifi
tidal-hifi: init at 4.0.0
This commit is contained in:
commit
64e4a162b3
2 changed files with 121 additions and 0 deletions
119
pkgs/applications/audio/tidal-hifi/default.nix
Normal file
119
pkgs/applications/audio/tidal-hifi/default.nix
Normal file
|
@ -0,0 +1,119 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, autoPatchelfHook
|
||||||
|
, dpkg
|
||||||
|
, makeWrapper
|
||||||
|
, alsa-lib
|
||||||
|
, at-spi2-atk
|
||||||
|
, at-spi2-core
|
||||||
|
, atk
|
||||||
|
, cairo
|
||||||
|
, cups
|
||||||
|
, dbus
|
||||||
|
, expat
|
||||||
|
, ffmpeg
|
||||||
|
, fontconfig
|
||||||
|
, freetype
|
||||||
|
, gdk-pixbuf
|
||||||
|
, glib
|
||||||
|
, gtk3
|
||||||
|
, libappindicator-gtk3
|
||||||
|
, libdbusmenu
|
||||||
|
, libdrm
|
||||||
|
, libnotify
|
||||||
|
, libpulseaudio
|
||||||
|
, libsecret
|
||||||
|
, libuuid
|
||||||
|
, libxkbcommon
|
||||||
|
, mesa
|
||||||
|
, nss
|
||||||
|
, pango
|
||||||
|
, systemd
|
||||||
|
, xdg-utils
|
||||||
|
, xorg
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "tidal-hifi";
|
||||||
|
version = "4.0.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/Mastermindzh/tidal-hifi/releases/download/${version}/tidal-hifi_${version}_amd64.deb";
|
||||||
|
sha256 = "19gx9x3v5ywlvg5vyqgj6pghzwinby0i8isavfrix798pfr98j5z";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoPatchelfHook dpkg makeWrapper ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
alsa-lib
|
||||||
|
at-spi2-atk
|
||||||
|
at-spi2-core
|
||||||
|
atk
|
||||||
|
cairo
|
||||||
|
cups
|
||||||
|
dbus
|
||||||
|
expat
|
||||||
|
ffmpeg
|
||||||
|
fontconfig
|
||||||
|
freetype
|
||||||
|
gdk-pixbuf
|
||||||
|
glib
|
||||||
|
gtk3
|
||||||
|
pango
|
||||||
|
systemd
|
||||||
|
mesa # for libgbm
|
||||||
|
nss
|
||||||
|
libuuid
|
||||||
|
libdrm
|
||||||
|
libnotify
|
||||||
|
libsecret
|
||||||
|
libpulseaudio
|
||||||
|
libxkbcommon
|
||||||
|
libappindicator-gtk3
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libxcb
|
||||||
|
xorg.libXcomposite
|
||||||
|
xorg.libXcursor
|
||||||
|
xorg.libXdamage
|
||||||
|
xorg.libXext
|
||||||
|
xorg.libXfixes
|
||||||
|
xorg.libXi
|
||||||
|
xorg.libXrandr
|
||||||
|
xorg.libXrender
|
||||||
|
xorg.libXScrnSaver
|
||||||
|
xorg.libxshmfence
|
||||||
|
xorg.libXtst
|
||||||
|
];
|
||||||
|
|
||||||
|
runtimeDependencies =
|
||||||
|
[ (lib.getLib systemd) libnotify libdbusmenu xdg-utils ];
|
||||||
|
|
||||||
|
unpackPhase = "dpkg-deb -x $src .";
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
mkdir -p "$out/bin"
|
||||||
|
cp -R "opt" "$out"
|
||||||
|
cp -R "usr/share" "$out/share"
|
||||||
|
chmod -R g-w "$out"
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
makeWrapper $out/opt/tidal-hifi/tidal-hifi $out/bin/tidal-hifi \
|
||||||
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}" \
|
||||||
|
"''${gappsWrapperArgs[@]}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "The web version of Tidal running in electron with hifi support thanks to widevine";
|
||||||
|
homepage = "https://github.com/Mastermindzh/tidal-hifi";
|
||||||
|
changelog = "https://github.com/Mastermindzh/tidal-hifi/releases/tag/${version}";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ alternateved ];
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -21038,6 +21038,8 @@ with pkgs;
|
||||||
|
|
||||||
tidyp = callPackage ../development/libraries/tidyp { };
|
tidyp = callPackage ../development/libraries/tidyp { };
|
||||||
|
|
||||||
|
tidal-hifi = callPackage ../applications/audio/tidal-hifi { };
|
||||||
|
|
||||||
tinycdb = callPackage ../development/libraries/tinycdb { };
|
tinycdb = callPackage ../development/libraries/tinycdb { };
|
||||||
|
|
||||||
tinyxml = tinyxml2;
|
tinyxml = tinyxml2;
|
||||||
|
|
Loading…
Reference in a new issue