2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libraw1394 }:
|
|
|
|
|
2008-01-31 11:41:04 +01:00
|
|
|
stdenv.mkDerivation {
|
2008-01-15 15:32:10 +01:00
|
|
|
name = "libavc1394-0.5.3";
|
|
|
|
|
2008-01-31 11:41:04 +01:00
|
|
|
src = fetchurl {
|
2008-01-15 15:32:10 +01:00
|
|
|
url = mirror://sourceforge/libavc1394/libavc1394-0.5.3.tar.gz;
|
|
|
|
sha256 = "19i40i3722ilhziknfds3a6w5xzv66fvc68gvbir1p2fvwi6ij93";
|
|
|
|
};
|
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
buildInputs = [ pkgconfig ];
|
|
|
|
propagatedBuildInputs = [ libraw1394 ];
|
2008-01-15 15:32:10 +01:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 13:55:54 +02:00
|
|
|
description = "Programming interface for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set";
|
|
|
|
homepage = http://sourceforge.net/projects/libavc1394/;
|
|
|
|
license = [ "GPL" "LGPL" ];
|
2008-01-15 15:32:10 +01:00
|
|
|
};
|
|
|
|
}
|