tanidvr: init at 1.4.1

+21
+19
pkgs/applications/video/tanidvr/default.nix
··· 1 + { lib, stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "tanidvr"; 5 + version = "1.4.1"; 6 + 7 + src = fetchurl { 8 + url = "mirror://sourceforge/tanidvr/TaniDVR/${pname}-${version}/${pname}-${version}.tar.bz2"; 9 + sha256 = "0irwwf6mb72n3y4xcrl3s081nbnldvdlc6ypjqxa4p32c1d0g6ql"; 10 + }; 11 + 12 + meta = { 13 + description = "CLI tool for managing and capturing video from DVRs which use the DVR-IP protocol"; 14 + homepage = "https://tanidvr.sourceforge.net/"; 15 + license = lib.licenses.gpl3Only; 16 + maintainers = with lib.maintainers; [ pho ]; 17 + platforms = lib.platforms.linux; 18 + }; 19 + }
+2
pkgs/top-level/all-packages.nix
··· 24432 24432 24433 24433 taglib-sharp = callPackage ../development/libraries/taglib-sharp { }; 24434 24434 24435 + tanidvr = callPackage ../applications/video/tanidvr { }; 24436 + 24435 24437 talloc = callPackage ../development/libraries/talloc { }; 24436 24438 24437 24439 tagparser = callPackage ../development/libraries/tagparser { };