mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 09:03:42 +00:00
![Silvan Mosberger](/assets/img/avatar_default.png)
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
124 lines
2.5 KiB
Nix
124 lines
2.5 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
addDriverRunpath,
|
|
alsa-lib,
|
|
autoPatchelfHook,
|
|
cairo,
|
|
fetchurl,
|
|
flac,
|
|
gcc12,
|
|
gssdp,
|
|
gupnp,
|
|
gupnp-av,
|
|
lame,
|
|
libgmpris,
|
|
libusb-compat-0_1,
|
|
llvmPackages_14,
|
|
mpg123,
|
|
rpmextract,
|
|
wavpack,
|
|
|
|
callPackage,
|
|
rygel ? null,
|
|
}@inputs:
|
|
let
|
|
# FIXME: Replace with gnome.rygel once hqplayerd releases a new version.
|
|
rygel-hqplayerd = inputs.rygel or (callPackage ./rygel.nix { });
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "hqplayerd";
|
|
version = "5.5.0-13";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.signalyst.eu/bins/${pname}/fc37/${pname}-${version}.fc37.x86_64.rpm";
|
|
hash = "sha256-yfdgsQu2w56apq5lyD0JcEkM9/EtlfdZQ9I5x1BBOcU=";
|
|
};
|
|
|
|
unpackPhase = ''
|
|
${rpmextract}/bin/rpmextract $src
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
addDriverRunpath
|
|
autoPatchelfHook
|
|
rpmextract
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
cairo
|
|
flac
|
|
gcc12.cc.lib
|
|
rygel-hqplayerd
|
|
gssdp
|
|
gupnp
|
|
gupnp-av
|
|
lame
|
|
libgmpris
|
|
libusb-compat-0_1
|
|
llvmPackages_14.openmp
|
|
mpg123
|
|
wavpack
|
|
];
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
# executables
|
|
mkdir -p $out
|
|
cp -rv ./usr/bin $out/bin
|
|
|
|
# libs
|
|
mkdir -p $out
|
|
cp -rv ./opt/hqplayerd/lib $out
|
|
|
|
# configuration
|
|
mkdir -p $out/etc
|
|
cp -rv ./etc/hqplayer $out/etc/
|
|
|
|
# systemd service file
|
|
mkdir -p $out/lib/systemd
|
|
cp -rv ./usr/lib/systemd/system $out/lib/systemd/
|
|
|
|
# documentation
|
|
mkdir -p $out/share/doc
|
|
cp -rv ./usr/share/doc/hqplayerd $out/share/doc/
|
|
|
|
# misc service support files
|
|
mkdir -p $out/var/lib
|
|
cp -rv ./var/lib/hqplayer $out/var/lib/
|
|
runHook postInstall
|
|
'';
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/lib/systemd/system/hqplayerd.service \
|
|
--replace /usr/bin/hqplayerd $out/bin/hqplayerd \
|
|
--replace "NetworkManager-wait-online.service" ""
|
|
'';
|
|
|
|
# NB: addDriverRunpath needs to run _after_ autoPatchelfHook, which runs in
|
|
# postFixup, so we tack it on here.
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
addDriverRunpath $out/bin/hqplayerd
|
|
$out/bin/hqplayerd --version
|
|
'';
|
|
|
|
passthru = {
|
|
rygel = rygel-hqplayerd;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.signalyst.com/custom.html";
|
|
description = "High-end upsampling multichannel software embedded HD-audio player";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ lovesegfault ];
|
|
};
|
|
}
|