Add unicap

svn path=/nixpkgs/trunk/; revision=24271
This commit is contained in:
Michael Raskin 2010-10-14 10:10:45 +00:00
parent 1bda7748da
commit 494ba6a813
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,55 @@
x@{builderDefsPackage
, libusb, libraw1394, dcraw, intltool, perl
, ...}:
builderDefsPackage
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
[];
buildInputs = map (n: builtins.getAttr n x)
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
sourceInfo = rec {
baseName="libunicap";
version="0.9.12";
name="${baseName}-${version}";
url="http://www.unicap-imaging.org/downloads/${name}.tar.gz";
hash="05zcnnm4dfc6idihfi0fq5xka6x86zi89wip2ca19yz768sd33s9";
};
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 = ["fixIncludes" "fixMakefiles" "doConfigure" "doMakeInstall"];
fixIncludes = a.fullDepEntry (''
find . -type f -exec sed -e '/linux\/types\.h/d' -i '{}' ';'
'') ["minInit" "doUnpack"];
fixMakefiles = a.fullDepEntry (''
sed -e 's@/etc/udev@'"$out"'/&@' -i data/Makefile.*
'') ["minInit" "doUnpack"];
meta = {
description = "Universal video capture API";
maintainers = with a.lib.maintainers;
[
raskin
];
platforms = with a.lib.platforms;
linux;
};
passthru = {
updateInfo = {
downloadPage = "http://unicap-imaging.org/download.htm";
};
};
}) x

View File

@ -3837,6 +3837,8 @@ let
tk = callPackage ../development/libraries/tk { };
unicap = callPackage ../development/libraries/unicap {};
unixODBC = callPackage ../development/libraries/unixODBC { };
unixODBCDrivers = recurseIntoAttrs (import ../development/libraries/unixODBCDrivers {