summary refs log tree commit diff
path: root/pkgs/development/libraries/libavc1394/default.nix
blob: 07753c864030bb817664b32bdc71164074547a11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, pkgconfig, libraw1394 }:

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" ];
  };
}