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

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

40 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, 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";
2022-03-12 19:39:04 +00:00
version = "20220303";
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";
2022-03-12 19:39:04 +00:00
sha256 = "sha256-HlT/78LUiTkRUB2jHmYrnQY+bBiv4stcZlMyUnelSpc=";
2017-04-30 20:28:19 +00:00
};
postPatch = lib.optionalString stdenv.isDarwin ''
substituteInPlace Makefile \
--replace "-arch x86_64" "-arch ${stdenv.hostPlatform.darwinArch}"
2017-04-30 20:28:19 +00:00
'';
makeFlags = [
"CC=${stdenv.cc.targetPrefix}cc"
];
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 lib; {
2017-04-30 20:28:19 +00:00
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 ];
};
}