nixpkgs/pkgs/servers/pulseaudio/hsphfpd.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, makeWrapper, perlPackages }:
2020-10-24 23:54:30 +00:00
let
perlLibs = with perlPackages; [ NetDBus XMLTwig XMLParser ];
in
stdenv.mkDerivation {
pname = "hsphfpd";
2020-12-08 16:14:54 +00:00
version = "2020-12-05";
2020-10-24 23:54:30 +00:00
src = fetchFromGitHub {
owner = "pali";
repo = "hsphfpd-prototype";
2020-12-08 16:14:54 +00:00
rev = "d294d064879591e9570ca3f444fa3eee2f269df8";
sha256 = "0pm5rbsfrm04hnifzdmsyz17rjk8h9h6d19jaikjc5y36z03xf1c";
2020-10-24 23:54:30 +00: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 lib; {
2020-10-24 23:54:30 +00:00
description = "Bluetooth HSP/HFP daemon";
homepage = "https://github.com/pali/hsphfpd-prototype";
license = licenses.artistic1;
maintainers = with maintainers; [ gebner ];
platforms = platforms.linux;
};
}