about summary refs log tree commit diff
path: root/pkgs/development/libraries/unicap
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2015-12-30 12:22:11 +0100
committerRobert Helgesson <robert@rycee.net>2015-12-30 21:15:15 +0100
commitffd09ecc60d26863a33d2ece4a362bc9e585344e (patch)
tree5ce7edf1d95407e9554a6f9d0a5724b83a8d98ce /pkgs/development/libraries/unicap
parent6ca0480de6a6ad442455157d90605c4c2a4d2c3a (diff)
downloadnixlib-ffd09ecc60d26863a33d2ece4a362bc9e585344e.tar
nixlib-ffd09ecc60d26863a33d2ece4a362bc9e585344e.tar.gz
nixlib-ffd09ecc60d26863a33d2ece4a362bc9e585344e.tar.bz2
nixlib-ffd09ecc60d26863a33d2ece4a362bc9e585344e.tar.lz
nixlib-ffd09ecc60d26863a33d2ece4a362bc9e585344e.tar.xz
nixlib-ffd09ecc60d26863a33d2ece4a362bc9e585344e.tar.zst
nixlib-ffd09ecc60d26863a33d2ece4a362bc9e585344e.zip
unicap: use stdenv
This replaces use of `builderDefsPackage`. Also fix build.
Diffstat (limited to 'pkgs/development/libraries/unicap')
-rw-r--r--pkgs/development/libraries/unicap/default.nix70
1 files changed, 24 insertions, 46 deletions
diff --git a/pkgs/development/libraries/unicap/default.nix b/pkgs/development/libraries/unicap/default.nix
index daec5a785662..604a1b7012af 100644
--- a/pkgs/development/libraries/unicap/default.nix
+++ b/pkgs/development/libraries/unicap/default.nix
@@ -1,56 +1,34 @@
-x@{builderDefsPackage
-  , libusb, libraw1394, dcraw, intltool, perl
-  , ...}:
-builderDefsPackage
-(a :  
-let 
-  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ 
-    [];
+{ stdenv, fetchurl, libusb, libraw1394, dcraw, intltool, perl, v4l_utils }:
 
-  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;
+stdenv.mkDerivation rec {
+  name = "libunicap-${version}";
+  version="0.9.12";
+
+  src = fetchurl {
+    url = "http://www.unicap-imaging.org/downloads/${name}.tar.gz";
+    sha256 = "05zcnnm4dfc6idihfi0fq5xka6x86zi89wip2ca19yz768sd33s9";
   };
 
-  inherit (sourceInfo) name version;
-  inherit buildInputs;
+  buildInputs = [ libusb libraw1394 dcraw intltool perl v4l_utils ];
 
-  /* doConfigure should be removed if not needed */
-  phaseNames = ["fixIncludes" "fixMakefiles" "doConfigure" "doMakeInstall"];
+  patches = [
+    # Debian has a patch that fixes the build.
+    (fetchurl {
+      url = "https://sources.debian.net/data/main/u/unicap/0.9.12-2/debian/patches/1009_v4l1.patch";
+      sha256 = "1lgypmhdj681m7d1nmzgvh19cz8agj2f31wlnfib0ha8i3g5hg5w";
+    })
+  ];
 
-  fixIncludes = a.fullDepEntry (''
+  postPatch = ''
     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 = {
+  meta = with stdenv.lib; {
     description = "Universal video capture API";
-    maintainers = with a.lib.maintainers;
-    [
-      raskin
-    ];
-    platforms = with a.lib.platforms;
-      linux;
-    broken = true;
+    homepage = http://www.unicap-imaging.org/;
+    maintainers = [ maintainers.raskin ];
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
   };
-  passthru = {
-    updateInfo = {
-      downloadPage = "http://unicap-imaging.org/download.htm";
-    };
-  };
-}) x
-
+}