diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index d38a2285c38..6ac420d3e17 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -12629,6 +12629,12 @@ githubId = 421510; name = "NoƩ Rubinstein"; }; + pho = { + email = "phofin@gmail.com"; + github = "pho"; + githubId = 88469; + name = "Jaime Breva"; + }; photex = { email = "photex@gmail.com"; github = "photex"; diff --git a/pkgs/applications/video/tanidvr/default.nix b/pkgs/applications/video/tanidvr/default.nix new file mode 100644 index 00000000000..74987e00408 --- /dev/null +++ b/pkgs/applications/video/tanidvr/default.nix @@ -0,0 +1,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; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8f70ac0dbaa..a0fbc5e3d5e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -24456,6 +24456,8 @@ with pkgs; taglib-sharp = callPackage ../development/libraries/taglib-sharp { }; + tanidvr = callPackage ../applications/video/tanidvr { }; + talloc = callPackage ../development/libraries/talloc { }; tagparser = callPackage ../development/libraries/tagparser { };