2010-07-28 12:55:54 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2008-02-06 19:00:41 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-18 02:27:41 +01:00
|
|
|
name = "libraw1394-2.1.1";
|
2008-01-15 00:55:21 +00:00
|
|
|
|
2008-01-31 10:41:04 +00:00
|
|
|
src = fetchurl {
|
2011-07-25 20:08:00 +01:00
|
|
|
url = "mirror://kernel/linux/libs/ieee1394/${name}.tar.gz";
|
2015-09-18 02:27:41 +01:00
|
|
|
sha256 = "0x6az154wr7wv3945485grjvpk604khv34dbaph6vmc1zdasqq59";
|
2008-01-15 00:55:21 +00:00
|
|
|
};
|
|
|
|
|
2015-04-25 23:54:12 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 12:55:54 +01:00
|
|
|
description = "Library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
|
2011-07-25 20:08:00 +01:00
|
|
|
homepage = "https://ieee1394.wiki.kernel.org/index.php/Libraries#libraw1394";
|
2015-04-29 16:53:09 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2015-04-25 23:54:12 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2008-01-15 00:55:21 +00:00
|
|
|
};
|
|
|
|
}
|