3
0
Fork 0
forked from mirrors/nixpkgs

* Updated libraw1394 and libavc1394.

svn path=/nixpkgs/branches/kde-4.7/; revision=27950
This commit is contained in:
Eelco Dolstra 2011-07-25 19:08:00 +00:00
parent 929160b86d
commit 0deb1fa33d
2 changed files with 8 additions and 8 deletions

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, libraw1394 }: { stdenv, fetchurl, pkgconfig, libraw1394 }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "libavc1394-0.5.3"; name = "libavc1394-0.5.4";
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/libavc1394/libavc1394-0.5.3.tar.gz; url = "mirror://sourceforge/libavc1394/${name}.tar.gz";
sha256 = "19i40i3722ilhziknfds3a6w5xzv66fvc68gvbir1p2fvwi6ij93"; sha256 = "0lsv46jdqvdx5hx92v0z2cz3yh6212pz9gk0k3513sbaa04zzcbw";
}; };
buildInputs = [ pkgconfig ]; buildInputs = [ pkgconfig ];

View file

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