Merge pull request #248512 from r-ryantm/auto-update/tidal-hifi
tidal-hifi: 5.3.0 -> 5.5.0
This commit is contained in:
commit
5d84cae469
1 changed files with 11 additions and 11 deletions
|
@ -34,13 +34,13 @@
|
||||||
, xorg
|
, xorg
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "tidal-hifi";
|
pname = "tidal-hifi";
|
||||||
version = "5.3.0";
|
version = "5.5.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/Mastermindzh/tidal-hifi/releases/download/${version}/tidal-hifi_${version}_amd64.deb";
|
url = "https://github.com/Mastermindzh/tidal-hifi/releases/download/${finalAttrs.version}/tidal-hifi_${finalAttrs.version}_amd64.deb";
|
||||||
sha256 = "sha256-YGSHEvanWek6qiWvKs6g+HneGbuuqJn/DBfhawjQi5M=";
|
sha256 = "sha256-pUQgTz7KZt4icD4lDAs4Wg095HxYEAifTM8a4cDejQM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoPatchelfHook dpkg makeWrapper ];
|
nativeBuildInputs = [ autoPatchelfHook dpkg makeWrapper ];
|
||||||
|
@ -104,18 +104,18 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
makeWrapper $out/opt/tidal-hifi/tidal-hifi $out/bin/tidal-hifi \
|
makeWrapper $out/opt/tidal-hifi/tidal-hifi $out/bin/tidal-hifi \
|
||||||
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}" \
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath finalAttrs.buildInputs}" \
|
||||||
"''${gappsWrapperArgs[@]}"
|
"''${gappsWrapperArgs[@]}"
|
||||||
substituteInPlace $out/share/applications/tidal-hifi.desktop \
|
substituteInPlace $out/share/applications/tidal-hifi.desktop \
|
||||||
--replace "/opt/tidal-hifi/tidal-hifi" "tidal-hifi"
|
--replace "/opt/tidal-hifi/tidal-hifi" "tidal-hifi"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
|
changelog = "https://github.com/Mastermindzh/tidal-hifi/releases/tag/${finalAttrs.version}";
|
||||||
description = "The web version of Tidal running in electron with hifi support thanks to widevine";
|
description = "The web version of Tidal running in electron with hifi support thanks to widevine";
|
||||||
homepage = "https://github.com/Mastermindzh/tidal-hifi";
|
homepage = "https://github.com/Mastermindzh/tidal-hifi";
|
||||||
changelog = "https://github.com/Mastermindzh/tidal-hifi/releases/tag/${version}";
|
license = lib.licenses.mit;
|
||||||
license = licenses.mit;
|
maintainers = with lib.maintainers; [ qbit ];
|
||||||
maintainers = with maintainers; [ qbit ];
|
platforms = lib.platforms.linux;
|
||||||
platforms = [ "x86_64-linux" ];
|
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Reference in a new issue