tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tanidvr: init at 1.4.1
Jaime Breva
2 years ago
da83e766
d9cecd86
+21
2 changed files
expand all
collapse all
unified
split
pkgs
applications
video
tanidvr
default.nix
top-level
all-packages.nix
+19
pkgs/applications/video/tanidvr/default.nix
···
1
1
+
{ lib, stdenv, fetchurl }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
pname = "tanidvr";
5
5
+
version = "1.4.1";
6
6
+
7
7
+
src = fetchurl {
8
8
+
url = "mirror://sourceforge/tanidvr/TaniDVR/${pname}-${version}/${pname}-${version}.tar.bz2";
9
9
+
sha256 = "0irwwf6mb72n3y4xcrl3s081nbnldvdlc6ypjqxa4p32c1d0g6ql";
10
10
+
};
11
11
+
12
12
+
meta = {
13
13
+
description = "CLI tool for managing and capturing video from DVRs which use the DVR-IP protocol";
14
14
+
homepage = "https://tanidvr.sourceforge.net/";
15
15
+
license = lib.licenses.gpl3Only;
16
16
+
maintainers = with lib.maintainers; [ pho ];
17
17
+
platforms = lib.platforms.linux;
18
18
+
};
19
19
+
}
+2
pkgs/top-level/all-packages.nix
···
24432
24432
24433
24433
taglib-sharp = callPackage ../development/libraries/taglib-sharp { };
24434
24434
24435
24435
+
tanidvr = callPackage ../applications/video/tanidvr { };
24436
24436
+
24435
24437
talloc = callPackage ../development/libraries/talloc { };
24436
24438
24437
24439
tagparser = callPackage ../development/libraries/tagparser { };