tanidvr: init at 1.4.1

This commit is contained in:
Jaime Breva 2023-06-15 08:07:33 +02:00
parent d9cecd8689
commit da83e7667e
2 changed files with 21 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -24432,6 +24432,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 { };