Add unicap
svn path=/nixpkgs/trunk/; revision=24271
This commit is contained in:
parent
1bda7748da
commit
494ba6a813
55
pkgs/development/libraries/unicap/default.nix
Normal file
55
pkgs/development/libraries/unicap/default.nix
Normal 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
|
||||||
|
|
@ -3837,6 +3837,8 @@ let
|
|||||||
|
|
||||||
tk = callPackage ../development/libraries/tk { };
|
tk = callPackage ../development/libraries/tk { };
|
||||||
|
|
||||||
|
unicap = callPackage ../development/libraries/unicap {};
|
||||||
|
|
||||||
unixODBC = callPackage ../development/libraries/unixODBC { };
|
unixODBC = callPackage ../development/libraries/unixODBC { };
|
||||||
|
|
||||||
unixODBCDrivers = recurseIntoAttrs (import ../development/libraries/unixODBCDrivers {
|
unixODBCDrivers = recurseIntoAttrs (import ../development/libraries/unixODBCDrivers {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user