nixpkgs/pkgs/servers/roon-server/default.nix

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

100 lines
2.7 KiB
Nix
Raw Normal View History

{ alsa-lib
, alsa-utils
2020-07-23 18:37:52 +00:00
, autoPatchelfHook
, cifs-utils
, fetchurl
, ffmpeg
, freetype
2021-11-04 16:37:07 +00:00
, icu66
, krb5
2020-07-23 18:37:52 +00:00
, lib
2021-12-26 16:39:41 +00:00
, libtasn1
2022-03-29 18:55:29 +00:00
, lttng-ust_2_12
2020-07-23 18:37:52 +00:00
, makeWrapper
2021-11-04 16:37:07 +00:00
, openssl
2022-03-29 18:55:29 +00:00
, stdenv
}:
stdenv.mkDerivation rec {
2021-06-10 06:04:56 +00:00
pname = "roon-server";
2022-06-28 15:54:15 +00:00
version = "1.8-970";
2019-06-21 18:58:20 +00:00
src =
let
urlVersion = builtins.replaceStrings [ "." "-" ] [ "00" "00" ] version;
in
fetchurl {
url = "http://download.roonlabs.com/builds/RoonServer_linuxx64_${urlVersion}.tar.bz2";
2022-06-28 15:54:15 +00:00
hash = "sha256-A1DT3cVdUksszp+25D5JYHrxIGFPXJ/J14oQOfShbak=";
};
2019-06-21 18:58:20 +00:00
dontConfigure = true;
dontBuild = true;
2020-07-23 18:37:52 +00:00
buildInputs = [
alsa-lib
2020-07-23 18:37:52 +00:00
freetype
2021-11-04 16:37:07 +00:00
krb5
2021-12-26 16:39:41 +00:00
libtasn1
2022-03-29 18:55:29 +00:00
lttng-ust_2_12
2021-11-04 16:37:07 +00:00
stdenv.cc.cc.lib
2020-07-23 18:37:52 +00:00
];
2019-06-21 18:58:20 +00:00
2020-07-23 18:37:52 +00:00
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
2019-06-21 18:58:20 +00:00
2021-11-04 16:37:07 +00:00
installPhase =
2020-07-23 18:37:52 +00:00
let
2021-11-04 16:37:07 +00:00
# NB: While this might seem like odd behavior, it's what Roon expects. The
# tarball distribution provides scripts that do a bunch of nonsense on top
# of what wrapBin is doing here, so consider it the lesser of two evils.
# I didn't bother checking whether the symlinks are really necessary, but
# I wouldn't put it past Roon to have custom code based on the binary
# name, so we're playing it safe.
wrapBin = binPath: ''
(
binDir="$(dirname "${binPath}")"
binName="$(basename "${binPath}")"
dotnetDir="$out/RoonDotnet"
ln -sf "$dotnetDir/dotnet" "$dotnetDir/$binName"
rm "${binPath}"
makeWrapper "$dotnetDir/$binName" "${binPath}" \
--add-flags "$binDir/$binName.dll" \
--argv0 "$binName" \
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ alsa-lib icu66 ffmpeg openssl ]}" \
2021-11-04 16:37:07 +00:00
--prefix PATH : "$dotnetDir" \
--prefix PATH : "${lib.makeBinPath [ alsa-utils cifs-utils ffmpeg ]}" \
--chdir "$binDir" \
2021-11-04 16:37:07 +00:00
--set DOTNET_ROOT "$dotnetDir"
)
2020-07-23 18:37:52 +00:00
'';
in
''
2021-11-04 16:37:07 +00:00
runHook preInstall
mkdir -p $out
mv * $out
rm $out/check.sh
rm $out/start.sh
rm $out/VERSION
${wrapBin "$out/Appliance/RAATServer"}
${wrapBin "$out/Appliance/RoonAppliance"}
${wrapBin "$out/Server/RoonServer"}
mkdir -p $out/bin
makeWrapper "$out/Server/RoonServer" "$out/bin/RoonServer" --chdir "$out"
2021-11-04 16:37:07 +00:00
runHook postInstall
2020-07-23 18:37:52 +00:00
'';
2019-06-21 18:58:20 +00:00
2020-07-23 18:37:52 +00:00
meta = with lib; {
description = "The music player for music lovers";
2021-06-10 06:04:56 +00:00
changelog = "https://community.roonlabs.com/c/roon/software-release-notes/18";
2020-07-23 18:37:52 +00:00
homepage = "https://roonlabs.com";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2020-07-23 18:37:52 +00:00
license = licenses.unfree;
maintainers = with maintainers; [ lovesegfault steell ];
2021-09-28 17:59:03 +00:00
platforms = [ "x86_64-linux" ];
2019-06-21 18:58:20 +00:00
};
}