nixpkgs/pkgs/development/libraries/libdc1394/default.nix
Anthony Cowley ab0ea84733 libdc1394: patch bugs on darwin
One of these issues is in a platform-specific file for darwin, the
other may only be a breaker when using clang.
2017-03-28 19:25:02 -04:00

27 lines
776 B
Nix

{ stdenv, fetchurl, libraw1394,
libusb1, CoreServices }:
stdenv.mkDerivation rec {
name = "libdc1394-${version}";
version = "2.2.5";
src = fetchurl {
url = "mirror://sourceforge/libdc1394/${name}.tar.gz";
sha256 = "0drk4sqvaym9glaraia25mj60rmwqbhy4j9h3x7gqpzfib8ch31m";
};
buildInputs = [ libusb1 ]
++ stdenv.lib.optional stdenv.isLinux libraw1394
++ stdenv.lib.optional stdenv.isDarwin CoreServices;
patches = stdenv.lib.optional stdenv.isDarwin ./darwin-fixes.patch;
meta = with stdenv.lib; {
homepage = http://sourceforge.net/projects/libdc1394/;
description = "Capture and control API for IIDC compliant cameras";
license = licenses.lgpl21Plus;
maintainers = [ maintainers.viric ];
platforms = platforms.unix;
};
}