2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2010-07-28 12:55:54 +01:00
|
|
|
|
2008-02-06 19:00:41 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-06-22 14:21:29 +01:00
|
|
|
pname = "libraw1394";
|
|
|
|
version = "2.1.2";
|
2008-01-15 00:55:21 +00:00
|
|
|
|
2008-01-31 10:41:04 +00:00
|
|
|
src = fetchurl {
|
2021-06-22 14:21:29 +01:00
|
|
|
url = "mirror://kernel/linux/libs/ieee1394/${pname}-${version}.tar.gz";
|
2018-02-27 04:58:45 +00:00
|
|
|
sha256 = "0z5md84941ky5l7afayx2z6j0sk0mildxbjajq6niznd44ky7i6x";
|
2008-01-15 00:55:21 +00:00
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with 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;
|
2008-01-15 00:55:21 +00:00
|
|
|
};
|
|
|
|
}
|