summary refs log tree commit diff
path: root/pkgs/applications/video/quvi/tool.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/quvi/tool.nix')
-rw-r--r--pkgs/applications/video/quvi/tool.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/video/quvi/tool.nix b/pkgs/applications/video/quvi/tool.nix
new file mode 100644
index 000000000000..b2ddabfa6a8d
--- /dev/null
+++ b/pkgs/applications/video/quvi/tool.nix
@@ -0,0 +1,22 @@
+{stdenv, fetchurl, pkgconfig, lua5, curl, quvi_scripts, libquvi}:
+
+stdenv.mkDerivation rec {
+  name = "quvi-${version}";
+  version="0.4.0";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/quvi/quvi-${version}.tar.gz";
+    sha256 = "0qzyj55py4z7pg97794jjycq8nvrlr02072rgjzg8jgknw49hgfv";
+  };
+
+  buildInputs = [ pkgconfig lua5 curl quvi_scripts libquvi ];
+
+  meta = { 
+    description = "Quvi is a web video downloader.";
+    homepage = http://quvi.sf.net;
+    license = "LGPLv2.1+";
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.mornfall ]; 
+  };
+}
+