summary refs log tree commit diff
path: root/pkgs/applications/video/tivodecode/default.nix
blob: bc7241025116c1704d128c4684bcf03d943997c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl }:

let
  version = "0.2pre4";

in

stdenv.mkDerivation {
  name = "tivodecode-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/tivodecode/tivodecode/${version}/tivodecode-${version}.tar.gz";
    sha256 = "1pww5r2iygscqn20a1cz9xbfh18p84a6a5ifg4h5nvyn9b63k23q";
  };

  meta = {
    description = "Converts a .TiVo file (produced by TiVoToGo) to a normal MPEG file";
    homepage = http://tivodecode.sourceforge.net;
  };
}