nixpkgs/pkgs/applications/video/tivodecode/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
546 B
Nix
Raw Normal View History

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