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