nixpkgs/pkgs/development/libraries/libraw1394/default.nix
Eelco Dolstra 0deb1fa33d * Updated libraw1394 and libavc1394.
svn path=/nixpkgs/branches/kde-4.7/; revision=27950
2011-07-25 19:08:00 +00:00

17 lines
506 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libraw1394-2.0.7";
src = fetchurl {
url = "mirror://kernel/linux/libs/ieee1394/${name}.tar.gz";
sha256 = "1mq9yy73q85lzk288lbdzvzrs5ajh84pzfh7xdhd3d8dy9v53xca";
};
meta = {
description = "Library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
homepage = "https://ieee1394.wiki.kernel.org/index.php/Libraries#libraw1394";
license = ["GPL" "LGPL"];
};
}