3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libhdhomerun/default.nix

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

36 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2017-04-30 21:28:19 +01: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 13:43:19 +01:00
stdenv.mkDerivation rec {
pname = "libhdhomerun";
2022-03-12 19:39:04 +00:00
version = "20220303";
2017-04-30 21:28:19 +01:00
2020-07-26 13:43:19 +01:00
src = fetchurl {
url = "https://download.silicondust.com/hdhomerun/libhdhomerun_${version}.tgz";
2022-03-12 19:39:04 +00:00
sha256 = "sha256-HlT/78LUiTkRUB2jHmYrnQY+bBiv4stcZlMyUnelSpc=";
2017-04-30 21:28:19 +01:00
};
patchPhase = lib.optionalString stdenv.isDarwin ''
2017-04-30 21:28:19 +01:00
substituteInPlace Makefile --replace "gcc" "cc"
substituteInPlace Makefile --replace "-arch i386" ""
'';
2017-09-12 20:36:41 +01:00
installPhase = ''
2017-04-30 21:28:19 +01:00
mkdir -p $out/{bin,lib,include/hdhomerun}
2017-09-12 20:36:41 +01:00
install -Dm444 libhdhomerun${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib
2017-04-30 21:28:19 +01:00
install -Dm555 hdhomerun_config $out/bin
cp *.h $out/include/hdhomerun
'';
meta = with lib; {
2017-04-30 21:28:19 +01:00
description = "Implements the libhdhomerun protocol for use with Silicondust HDHomeRun TV tuners";
2020-07-26 13:43:19 +01:00
homepage = "https://www.silicondust.com/support/linux";
license = licenses.lgpl21Only;
platforms = platforms.unix;
2017-04-30 21:28:19 +01:00
maintainers = [ maintainers.titanous ];
};
}