Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libraw1394 / default.nix
blob184cb2e7de4adf8b6a6645cb6a9ea4a55d756895
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "libraw1394";
5   version = "2.1.2";
7   src = fetchurl {
8     url = "mirror://kernel/linux/libs/ieee1394/${pname}-${version}.tar.gz";
9     sha256 = "0z5md84941ky5l7afayx2z6j0sk0mildxbjajq6niznd44ky7i6x";
10   };
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   };