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