1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6
7stdenv.mkDerivation rec {
8 pname = "libraw1394";
9 version = "2.1.2";
10
11 src = fetchurl {
12 url = "mirror://kernel/linux/libs/ieee1394/${pname}-${version}.tar.gz";
13 sha256 = "0z5md84941ky5l7afayx2z6j0sk0mildxbjajq6niznd44ky7i6x";
14 };
15
16 meta = with lib; {
17 description = "Library providing direct access to the IEEE 1394 bus through the Linux 1394 subsystem's raw1394 user space interface";
18 homepage = "https://ieee1394.wiki.kernel.org/index.php/Libraries#libraw1394";
19 license = licenses.lgpl21Plus;
20 platforms = platforms.linux;
21 };
22}