nixpkgs/pkgs/development/libraries/libavc1394/default.nix
Yury G. Kudryashov 112024a954 libavc1394: propagating libraw1394
svn path=/nixpkgs/branches/stdenv-updates/; revision=10522
2008-02-06 19:00:51 +00:00

19 lines
548 B
Nix

args: with args;
stdenv.mkDerivation {
name = "libavc1394-0.5.3";
src = fetchurl {
url = mirror://sourceforge/libavc1394/libavc1394-0.5.3.tar.gz;
sha256 = "19i40i3722ilhziknfds3a6w5xzv66fvc68gvbir1p2fvwi6ij93";
};
buildInputs = [pkgconfig];
propagatedBuildInputs = [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" ];
};
}