;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2016 Alex Kost ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages tv) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) #:use-module (gnu packages compression) #:use-module (gnu packages fontutils) #:use-module (gnu packages image) #:use-module (gnu packages linux) #:use-module (gnu packages xml) #:use-module (gnu packages xorg)) (define-public tvtime (package (name "tvtime") (version "1.0.10") (source (origin (method url-fetch) (uri (string-append "http://linuxtv.org/downloads/tvtime/tvtime-" version ".tar.gz")) (sha256 (base32 "1mk6dni82n8jv5wsrrpqzcwrg9ccx9vijb5sbm7gqm2y0h40q5y9")))) (build-system gnu-build-system) (inputs `(("alsa-lib" ,alsa-lib) ("libx11" ,libx11) ("libxext" ,libxext) ("libxt" ,libxt) ("libxtst" ,libxtst) ("libxinerama" ,libxinerama) ("libxv" ,libxv) ("libxxf86vm" ,libxxf86vm) ("libpng" ,libpng) ("libxml2" ,libxml2) ("freetype" ,freetype) ("zlib" ,zlib))) (home-page "http://tvtime.sourceforge.net") (synopsis "Television viewer") (description "Tvtime processes the input from your video capture card and displays it on a monitor. It focuses on a high visual quality.") (license license:gpl2+))) class='list nowrap'>AgeCommit message (Expand)Author 2024-08-11gnu: Replace (almost) all uses of /run/setuid-programs....Tobias Geerinckx-Rice 2024-06-04file-systems: Add support for mounting CIFS file systems...Richard Sent 2024-02-19machine/ssh: Refresh parameterization of %CURRENT-SYSTEM....Ricardo Wurmus 2023-08-08system: Do not check initrd modules for pseudo file systems....Ludovic Courtès 2022-11-17machine: ssh: Validate 'system' field....Ludovic Courtès 2022-11-09machine/digital-ocean: Pull operating system definition out of string....Ricardo Wurmus 2022-11-09machine/digital-ocean: Set load path to Guile 3.0 directories....Ricardo Wurmus 2022-11-09machine/digital-ocean: Use static-networking-service-type....Ricardo Wurmus 2022-11-09machine/digital-ocean: Use nightly Guix....Ricardo Wurmus 2022-10-17guix: Fix typos....Julien Lepiller 2022-09-26machine: ssh: Parameterize '%current-system' early on....Ludovic Courtès 2022-09-04Fix misspelling of GUIX_DIGITAL_OCEAN_TOKEN....Matthew James Kraai 2022-03-01initrd: Use non-hyphenated kernel command-line parameter names....Maxim Cournoyer 2022-01-16machine: ssh: Add 'safety-checks?' field....Ludovic Courtès 2022-01-09machine: ssh: Open a single SSH session per machine....Ludovic Courtès