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