nixpkgs/pkgs/servers/pulseaudio/hsphfpd.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

2020-10-25 01:54:30 +02:00
{ stdenv, fetchFromGitHub, makeWrapper, perlPackages }:
let
perlLibs = with perlPackages; [ NetDBus XMLTwig XMLParser ];
in
stdenv.mkDerivation {
pname = "hsphfpd";
2020-12-03 17:19:15 +01:00
version = "2020-11-27";
2020-10-25 01:54:30 +02:00
src = fetchFromGitHub {
owner = "pali";
repo = "hsphfpd-prototype";
2020-12-03 17:19:15 +01:00
rev = "58ffbf8f1b457e46801039d572cd344472828714";
sha256 = "1hyg3cz6s58k6a7a3hcbs6wfk14cflnikd9psi7sirq6cn1z0ggb";
2020-10-25 01:54:30 +02:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ perlPackages.perl ];
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/dbus-1/system.d
cp org.hsphfpd.conf $out/share/dbus-1/system.d
mkdir -p $out/bin
cp *.pl $out/bin
runHook postInstall
'';
postFixup = ''
for f in $out/bin/*.pl; do
wrapProgram "$f" --set PERL5LIB "${perlPackages.makePerlPath perlLibs}"
done
'';
meta = with stdenv.lib; {
description = "Bluetooth HSP/HFP daemon";
homepage = "https://github.com/pali/hsphfpd-prototype";
license = licenses.artistic1;
maintainers = with maintainers; [ gebner ];
platforms = platforms.linux;
};
}