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

32 lines
1,003 B
Nix
Raw Normal View History

2020-07-26 13:43:19 +01:00
{ stdenv, fetchurl }:
2017-04-30 21:28:19 +01:00
2020-07-26 13:43:19 +01:00
stdenv.mkDerivation rec {
pname = "libhdhomerun";
version = "20200521";
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";
sha256 = "0s0683bwyd10n3r2sanlyd07ii3fmi3vl9w9a2rwlpcclzq3h456";
2017-04-30 21:28:19 +01:00
};
patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
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 stdenv.lib; {
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 ];
};
}