nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6
7stdenv.mkDerivation rec {
8 pname = "tanidvr";
9 version = "1.4.1";
10
11 src = fetchurl {
12 url = "mirror://sourceforge/tanidvr/TaniDVR/${pname}-${version}/${pname}-${version}.tar.bz2";
13 sha256 = "0irwwf6mb72n3y4xcrl3s081nbnldvdlc6ypjqxa4p32c1d0g6ql";
14 };
15
16 meta = {
17 description = "CLI tool for managing and capturing video from DVRs which use the DVR-IP protocol";
18 homepage = "https://tanidvr.sourceforge.net/";
19 license = lib.licenses.gpl3Only;
20 maintainers = with lib.maintainers; [ pho ];
21 platforms = lib.platforms.linux;
22 };
23}