2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2008-02-06 20:00:41 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-10-07 13:52:51 +02:00
|
|
|
name = "libraw1394-2.1.0";
|
2008-01-15 01:55:21 +01:00
|
|
|
|
2008-01-31 11:41:04 +01:00
|
|
|
src = fetchurl {
|
2011-07-25 21:08:00 +02:00
|
|
|
url = "mirror://kernel/linux/libs/ieee1394/${name}.tar.gz";
|
2012-10-07 13:52:51 +02:00
|
|
|
sha256 = "0w5sw06p51wfq2ahgql93ljkkp3hqprifzcxq8dq71c8zcbgyg58";
|
2008-01-15 01:55:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2010-07-28 13:55:54 +02:00
|
|
|
description = "Library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
|
2011-07-25 21:08:00 +02:00
|
|
|
homepage = "https://ieee1394.wiki.kernel.org/index.php/Libraries#libraw1394";
|
2010-07-28 13:55:54 +02:00
|
|
|
license = ["GPL" "LGPL"];
|
2008-01-15 01:55:21 +01:00
|
|
|
};
|
|
|
|
}
|