summary refs log tree commit diff
path: root/pkgs/development/libraries/unicap/default.nix
blob: daec5a785662703f1761a9ae336356b50a9893a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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;
    broken = true;
  };
  passthru = {
    updateInfo = {
      downloadPage = "http://unicap-imaging.org/download.htm";
    };
  };
}) x