biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / video / tivodecode / default.nix
blobc21a0611262da7c0562bb454da8e2e83726e5bdf
1 { lib, stdenv, fetchurl }:
3 let
4   version = "0.2pre4";
6 in
8 stdenv.mkDerivation {
9   pname = "tivodecode";
10   inherit version;
12   src = fetchurl {
13     url = "mirror://sourceforge/tivodecode/tivodecode/${version}/tivodecode-${version}.tar.gz";
14     sha256 = "1pww5r2iygscqn20a1cz9xbfh18p84a6a5ifg4h5nvyn9b63k23q";
15   };
17   meta = with lib; {
18     description = "Converts a .TiVo file (produced by TiVoToGo) to a normal MPEG file";
19     homepage = "https://tivodecode.sourceforge.net";
20     platforms = platforms.unix;
21     license = licenses.bsd3;
22   };