summary refs log tree commit diff
path: root/pkgs/development/libraries/libraw1394/default.nix
blob: 8463749fcb3f1c2cfb56a87d9c7af0f526743aeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
args: with args;
stdenv.mkDerivation {
  name = "libraw1394-1.2.0";

  src = fetchurl {
    url = "mirror://sourceforge/libraw1394/libraw1394-1.2.0.tar.gz";
    sha256 = "1b9zqqzyz0ihyfvhn135y3wc6vmym5yz21jxj9dp0f09b96gmp0z";
  };

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