Adding v4l-utils

svn path=/nixpkgs/trunk/; revision=28529
This commit is contained in:
Michael Raskin 2011-08-13 08:59:00 +00:00
parent 95f6724196
commit 6f1eded225
2 changed files with 52 additions and 0 deletions

@ -0,0 +1,50 @@
x@{builderDefsPackage
, libv4l, libjpeg, qt4
, ...}:
builderDefsPackage
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
[];
buildInputs = map (n: builtins.getAttr n x)
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
sourceInfo = rec {
baseName="v4l-utils";
version="0.8.5";
name="${baseName}-${version}";
url="http://www.linuxtv.org/downloads/v4l-utils/${name}.tar.bz2";
hash="0k2rkra8lyimj6bwm8khq6xrhjdy67d09blxa6brnj7kpa7q81f2";
};
in
rec {
src = a.fetchurl {
url = sourceInfo.url;
sha256 = sourceInfo.hash;
};
inherit (sourceInfo) name version;
inherit buildInputs;
/* doConfigure should be removed if not needed */
phaseNames = ["doUnpack" "doMakeInstall"];
makeFlags = [''PREFIX="" DESTDIR="$out"''];
meta = {
description = "Video-4-Linux utilities";
maintainers = with a.lib.maintainers;
[
raskin
];
platforms = with a.lib.platforms;
linux;
license = a.lib.licenses.gpl2;
};
passthru = {
updateInfo = {
downloadPage = "http://www.linuxtv.org/downloads/v4l-utils/";
};
};
}) x

@ -5873,6 +5873,8 @@ let
inherit ncurses perl; inherit ncurses perl;
}; };
v4l_utils = callPackage ../os-specific/linux/v4l-utils {};
windows = rec { windows = rec {
w32api = callPackage ../os-specific/windows/w32api { w32api = callPackage ../os-specific/windows/w32api {
gccCross = gccCrossStageStatic; gccCross = gccCrossStageStatic;