about summary refs log tree commit diff
path: root/pkgs/applications/video/tanidvr/default.nix
blob: 74987e0040802443083929e157f229bdbb8e0914 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "tanidvr";
  version = "1.4.1";

  src = fetchurl {
    url = "mirror://sourceforge/tanidvr/TaniDVR/${pname}-${version}/${pname}-${version}.tar.bz2";
    sha256 = "0irwwf6mb72n3y4xcrl3s081nbnldvdlc6ypjqxa4p32c1d0g6ql";
  };

  meta = {
    description = "CLI tool for managing and capturing video from DVRs which use the DVR-IP protocol";
    homepage = "https://tanidvr.sourceforge.net/";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ pho ];
    platforms = lib.platforms.linux;
  };
}