mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Merge pull request #221087 from pho/tanidvr
This commit is contained in:
commit
25ff0a739d
@ -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";
|
||||
|
19
pkgs/applications/video/tanidvr/default.nix
Normal file
19
pkgs/applications/video/tanidvr/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user