forked from mirrors/nixpkgs
libavc1394 added
svn path=/nixpkgs/trunk/; revision=10124
This commit is contained in:
parent
0181562269
commit
50606f52be
17
pkgs/development/libraries/libavc1394/default.nix
Normal file
17
pkgs/development/libraries/libavc1394/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "libavc1394-0.5.3";
|
||||
|
||||
src = args.fetchurl {
|
||||
url = mirror://sourceforge/libavc1394/libavc1394-0.5.3.tar.gz;
|
||||
sha256 = "19i40i3722ilhziknfds3a6w5xzv66fvc68gvbir1p2fvwi6ij93";
|
||||
};
|
||||
|
||||
buildInputs =(with args; [pkgconfig libraw1394]);
|
||||
|
||||
meta = {
|
||||
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" ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue