From 9dab1a840cced57bd86c9f006dc44b21699d6660 Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Sat, 20 Jun 2015 20:33:57 +0000 Subject: tvheadend: init at 4.0.4 --- pkgs/servers/tvheadend/default.nix | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/servers/tvheadend/default.nix (limited to 'pkgs/servers/tvheadend') diff --git a/pkgs/servers/tvheadend/default.nix b/pkgs/servers/tvheadend/default.nix new file mode 100644 index 00000000000..7eb2c527406 --- /dev/null +++ b/pkgs/servers/tvheadend/default.nix @@ -0,0 +1,31 @@ +{avahi, dbus, fetchurl, git, gzip, libav, libiconv, openssl, pkgconfig, python, stdenv, which, zlib}: + +let version = "4.0.4"; + pkgName = "tvheadend"; in + +stdenv.mkDerivation rec { + name = "${pkgName}-${version}"; + + src = fetchurl { + url = "https://github.com/tvheadend/tvheadend/archive/v${version}.tar.gz"; + sha256 = "acc5c852bccb32d6a281f523e78a1cceb4d41987fe015aba3f66e1898b02c168"; + }; + + enableParallelBuilding = true; + + buildInputs = [ avahi dbus git gzip libav libiconv openssl pkgconfig python which zlib]; + + preConfigure = "patchShebangs ./configure"; + + meta = { + description = "TV steaming server"; + longDescription = '' + Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android + supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, IPTV, SAT>IP and HDHomeRun as input sources. + Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT>IP streaming.''; + homepage = "https://tvheadend.org"; + license = stdenv.lib.licenses.gpl3; + platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.simonvandel ]; + }; +} -- cgit 1.4.1