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

stdenv.mkDerivation rec {
  name = "libraw1394-1.3.0";

  src = fetchurl {
    url = "${meta.homepage}/dl/${name}.tar.gz";
    sha256 = "035mrca9fhg4kq8r1s5yjgzg3vrn1nc3ndy13yg3chhqgx4dzzr0";
  };

  meta = { 
    description = "Library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
    homepage = http://www.linux1394.org;
    license = ["GPL" "LGPL"];
  };
}