Merge pull request #221087 from pho/tanidvr

This commit is contained in:
Sandro 2023-06-16 11:10:11 +02:00 committed by GitHub
commit 25ff0a739d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 0 deletions

View file

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

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

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