mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Add quvi
Patch submitted by mornfall svn path=/nixpkgs/trunk/; revision=30720
This commit is contained in:
parent
a87be0fb2c
commit
3de62cd12a
22
pkgs/applications/video/quvi/library.nix
Normal file
22
pkgs/applications/video/quvi/library.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{stdenv, fetchurl, pkgconfig, lua5, curl, quvi_scripts}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libquvi-${version}";
|
||||
version="0.4.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/quvi/libquvi-${version}.tar.gz";
|
||||
sha256 = "15cm9j8dssn2zhplqvlw49piwfw511lia6b635byiwfniqf6dnwp";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig lua5 curl quvi_scripts ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
22
pkgs/applications/video/quvi/scripts.nix
Normal file
22
pkgs/applications/video/quvi/scripts.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{stdenv, fetchurl, pkgconfig}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "quvi-scripts-${version}";
|
||||
version="0.4.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/quvi/libquvi-scripts-${version}.tar.gz";
|
||||
sha256 = "14p1sn7id4n35isaw3i3h8vsgfqlym09fih9k5xfqwsg6n7xdvq5";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
22
pkgs/applications/video/quvi/tool.nix
Normal file
22
pkgs/applications/video/quvi/tool.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
@ -6751,6 +6751,12 @@ let
|
||||
|
||||
qcad = callPackage ../applications/misc/qcad { };
|
||||
|
||||
libquvi = callPackage ../applications/video/quvi/library.nix { };
|
||||
|
||||
quvi = callPackage ../applications/video/quvi/tool.nix { };
|
||||
|
||||
quvi_scripts = callPackage ../applications/video/quvi/scripts.nix { };
|
||||
|
||||
qjackctl = callPackage ../applications/audio/qjackctl { };
|
||||
|
||||
gkrellm = callPackage ../applications/misc/gkrellm { };
|
||||
|
Loading…
Reference in New Issue
Block a user