biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / tanidvr / default.nix
blob74987e0040802443083929e157f229bdbb8e0914
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "tanidvr";
5   version = "1.4.1";
7   src = fetchurl {
8     url = "mirror://sourceforge/tanidvr/TaniDVR/${pname}-${version}/${pname}-${version}.tar.bz2";
9     sha256 = "0irwwf6mb72n3y4xcrl3s081nbnldvdlc6ypjqxa4p32c1d0g6ql";
10   };
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   };