unicap: use stdenv
This replaces use of `builderDefsPackage`. Also fix build.
This commit is contained in:
parent
6ca0480de6
commit
ffd09ecc60
@ -1,56 +1,34 @@
|
|||||||
x@{builderDefsPackage
|
{ stdenv, fetchurl, libusb, libraw1394, dcraw, intltool, perl, v4l_utils }:
|
||||||
, libusb, libraw1394, dcraw, intltool, perl
|
|
||||||
, ...}:
|
|
||||||
builderDefsPackage
|
|
||||||
(a :
|
|
||||||
let
|
|
||||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
|
||||||
[];
|
|
||||||
|
|
||||||
buildInputs = map (n: builtins.getAttr n x)
|
stdenv.mkDerivation rec {
|
||||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
name = "libunicap-${version}";
|
||||||
sourceInfo = rec {
|
|
||||||
baseName="libunicap";
|
|
||||||
version="0.9.12";
|
version="0.9.12";
|
||||||
name="${baseName}-${version}";
|
|
||||||
|
src = fetchurl {
|
||||||
url = "http://www.unicap-imaging.org/downloads/${name}.tar.gz";
|
url = "http://www.unicap-imaging.org/downloads/${name}.tar.gz";
|
||||||
hash="05zcnnm4dfc6idihfi0fq5xka6x86zi89wip2ca19yz768sd33s9";
|
sha256 = "05zcnnm4dfc6idihfi0fq5xka6x86zi89wip2ca19yz768sd33s9";
|
||||||
};
|
|
||||||
in
|
|
||||||
rec {
|
|
||||||
src = a.fetchurl {
|
|
||||||
url = sourceInfo.url;
|
|
||||||
sha256 = sourceInfo.hash;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit (sourceInfo) name version;
|
buildInputs = [ libusb libraw1394 dcraw intltool perl v4l_utils ];
|
||||||
inherit buildInputs;
|
|
||||||
|
|
||||||
/* doConfigure should be removed if not needed */
|
patches = [
|
||||||
phaseNames = ["fixIncludes" "fixMakefiles" "doConfigure" "doMakeInstall"];
|
# Debian has a patch that fixes the build.
|
||||||
|
(fetchurl {
|
||||||
fixIncludes = a.fullDepEntry (''
|
url = "https://sources.debian.net/data/main/u/unicap/0.9.12-2/debian/patches/1009_v4l1.patch";
|
||||||
find . -type f -exec sed -e '/linux\/types\.h/d' -i '{}' ';'
|
sha256 = "1lgypmhdj681m7d1nmzgvh19cz8agj2f31wlnfib0ha8i3g5hg5w";
|
||||||
'') ["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;
|
|
||||||
broken = true;
|
|
||||||
};
|
|
||||||
passthru = {
|
|
||||||
updateInfo = {
|
|
||||||
downloadPage = "http://unicap-imaging.org/download.htm";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}) x
|
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
find . -type f -exec sed -e '/linux\/types\.h/d' -i '{}' ';'
|
||||||
|
sed -e 's@/etc/udev@'"$out"'/&@' -i data/Makefile.*
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Universal video capture API";
|
||||||
|
homepage = http://www.unicap-imaging.org/;
|
||||||
|
maintainers = [ maintainers.raskin ];
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user