2016-05-05 19:21:33 -07:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
let
|
|
|
|
version = "0.2pre4";
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "tivodecode";
|
|
|
|
inherit version;
|
2016-05-05 19:21:33 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/tivodecode/tivodecode/${version}/tivodecode-${version}.tar.gz";
|
|
|
|
sha256 = "1pww5r2iygscqn20a1cz9xbfh18p84a6a5ifg4h5nvyn9b63k23q";
|
|
|
|
};
|
|
|
|
|
2018-09-08 06:27:50 -07:00
|
|
|
meta = with stdenv.lib; {
|
2016-05-05 19:21:33 -07:00
|
|
|
description = "Converts a .TiVo file (produced by TiVoToGo) to a normal MPEG file";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://tivodecode.sourceforge.net";
|
2018-09-08 06:27:50 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.bsd3;
|
2016-05-05 19:21:33 -07:00
|
|
|
};
|
2016-08-02 10:50:55 -07:00
|
|
|
}
|