Skip to content

Commit 2204f74

Browse files
LouisDK1rycee
authored andcommitted
hdhomerun-config-gui: init at 20200521
1 parent c9c957d commit 2204f74

2 files changed

Lines changed: 31 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{ stdenv, fetchurl, libhdhomerun, vlc, gcc, gnumake, pkg-config, gtk2 }:
2+
3+
stdenv.mkDerivation rec {
4+
pname = "hdhomerun-config-gui";
5+
version = "20200521";
6+
7+
src = fetchurl {
8+
url = "https://download.silicondust.com/hdhomerun/hdhomerun_config_gui_${version}.tgz";
9+
sha256 = "1r1rwfgi714nwblyg8nqjzkpm4n2lg7kqqqas47hvbn5waimz1ja";
10+
};
11+
12+
nativeBuildInputs = [ pkg-config ];
13+
buildInputs = [ gtk2 libhdhomerun ];
14+
15+
configureFlags = [ "CPPFLAGS=-I${libhdhomerun}/include/hdhomerun" ];
16+
makeFlags = [ "SUBDIRS=src" ];
17+
18+
installPhase = ''
19+
install -vDm 755 src/hdhomerun_config_gui $out/usr/bin/hdhomerun_config_gui
20+
'';
21+
22+
meta = with stdenv.lib; {
23+
description = "GUI for configuring Silicondust HDHomeRun TV tuners";
24+
homepage = "https://www.silicondust.com/support/linux";
25+
license = licenses.gpl3Only;
26+
platforms = platforms.linux;
27+
maintainers = [ maintainers.louisdk1 ];
28+
};
29+
}

pkgs/top-level/all-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20486,6 +20486,8 @@ in
2048620486

2048720487
hactool = callPackage ../tools/compression/hactool { };
2048820488

20489+
hdhomerun-config-gui = callPackage ../applications/video/hdhomerun-config-gui { };
20490+
2048920491
heimer = libsForQt5.callPackage ../applications/misc/heimer { };
2049020492

2049120493
hello = callPackage ../applications/misc/hello { };

0 commit comments

Comments
 (0)