forked from mirrors/nixpkgs
Adding libdc1394
svn path=/nixpkgs/trunk/; revision=33975
This commit is contained in:
parent
8b8ab3e977
commit
b30b5a192e
19
pkgs/development/libraries/libdc1394/default.nix
Normal file
19
pkgs/development/libraries/libdc1394/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ stdenv, fetchurl, libraw1394, libusb1 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libdc1394-2.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/libdc1394/${name}.tar.gz";
|
||||
sha256 = "0v7y8r8zxpkcw8fhwr6x08wkbpfzs5snw5s589fpqmn569f1grn6";
|
||||
};
|
||||
|
||||
buildInputs = [ libraw1394 libusb1 ];
|
||||
|
||||
meta = {
|
||||
homepage = http://sourceforge.net/projects/libdc1394/;
|
||||
description = "Capture and control API for IIDC compliant cameras";
|
||||
maintainers = [ stdenv.lib.maintainers.viric ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -3995,6 +3995,8 @@ let
|
|||
|
||||
libdbusmenu_qt = callPackage ../development/libraries/libdbusmenu-qt { };
|
||||
|
||||
libdc1394 = callPackage ../development/libraries/libdc1394 { };
|
||||
|
||||
libdevil = callPackage ../development/libraries/libdevil { };
|
||||
|
||||
libdiscid = callPackage ../development/libraries/libdiscid { };
|
||||
|
|
Loading…
Reference in a new issue