summary refs log tree commit diff
path: root/pkgs/applications/video/tivodecode/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/tivodecode/default.nix')
-rw-r--r--pkgs/applications/video/tivodecode/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/video/tivodecode/default.nix b/pkgs/applications/video/tivodecode/default.nix
new file mode 100644
index 00000000000..bc724102511
--- /dev/null
+++ b/pkgs/applications/video/tivodecode/default.nix
@@ -0,0 +1,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;
+  };
+}
\ No newline at end of file