libraw1394: 1.3.0

svn path=/nixpkgs/branches/stdenv-updates/; revision=10520
This commit is contained in:
Yury G. Kudryashov 2008-02-06 19:00:41 +00:00
parent 4086ba92fa
commit 4f5f90015f

View File

@ -1,15 +1,15 @@
args: with args;
stdenv.mkDerivation {
name = "libraw1394-1.2.0";
stdenv.mkDerivation rec {
name = "libraw1394-1.3.0";
src = fetchurl {
url = "mirror://sourceforge/libraw1394/libraw1394-1.2.0.tar.gz";
sha256 = "1b9zqqzyz0ihyfvhn135y3wc6vmym5yz21jxj9dp0f09b96gmp0z";
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://wiki.linux1394.org/";
homepage = "http://wiki.linux1394.org";
license = ["GPL" "LGPL"];
};
}