nixpkgs/pkgs/development/libraries/libhdhomerun/default.nix

36 lines
1.2 KiB
Nix
Raw Normal View History

2020-07-26 12:43:19 +00:00
{ stdenv, fetchurl }:
2017-04-30 20:28:19 +00:00
# libhdhomerun requires UDP port 65001 to be open in order to detect and communicate with tuners.
# If your firewall is enabled, make sure to have something like:
# networking.firewall.allowedUDPPorts = [ 65001 ];
2020-07-26 12:43:19 +00:00
stdenv.mkDerivation rec {
pname = "libhdhomerun";
2020-11-02 19:12:45 +00:00
version = "20200907";
2017-04-30 20:28:19 +00:00
2020-07-26 12:43:19 +00:00
src = fetchurl {
url = "https://download.silicondust.com/hdhomerun/libhdhomerun_${version}.tgz";
2020-11-02 19:12:45 +00:00
sha256 = "1v80jk056ii2iv2w7sq24i3prjrbhxql5vqhafs7vq54qmwvgbnb";
2017-04-30 20:28:19 +00:00
};
patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace Makefile --replace "gcc" "cc"
substituteInPlace Makefile --replace "-arch i386" ""
'';
2017-09-12 19:36:41 +00:00
installPhase = ''
2017-04-30 20:28:19 +00:00
mkdir -p $out/{bin,lib,include/hdhomerun}
2017-09-12 19:36:41 +00:00
install -Dm444 libhdhomerun${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib
2017-04-30 20:28:19 +00:00
install -Dm555 hdhomerun_config $out/bin
cp *.h $out/include/hdhomerun
'';
meta = with stdenv.lib; {
description = "Implements the libhdhomerun protocol for use with Silicondust HDHomeRun TV tuners";
2020-07-26 12:43:19 +00:00
homepage = "https://www.silicondust.com/support/linux";
license = licenses.lgpl21Only;
platforms = platforms.unix;
2017-04-30 20:28:19 +00:00
maintainers = [ maintainers.titanous ];
};
}