forked from mirrors/nixpkgs
tanidvr: init at 1.4.1
This commit is contained in:
parent
d9cecd8689
commit
da83e7667e
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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue