summary refs log tree commit diff
path: root/pkgs/os-specific/linux/xmm7360-pci/default.nix
blob: 115299ff50bdf0bcccce622349416d0658ad37b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, fetchFromGitHub, fetchpatch, kernel, perl, bc, breakpointHook }:

stdenv.mkDerivation rec {
  pname = "xmm7360-pci";
  version = "unstable-2021-07-19";

  src = fetchFromGitHub {
    owner = "xmm7360";
    repo = "xmm7360-pci";
    rev = "7086b80bb609180b1b89fb478751e5e8414ab64f";
    sha256 = "1wdb0phqg9rj9g9ycqdya0m7lx24kzjlh25yw0ifp898ddxrrr0c";
  };

  makeFlags = [ "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ];

  nativeBuildInputs = kernel.moduleBuildDependencies;
  INSTALL_MOD_PATH = placeholder "out";
  installFlags = [ "DEPMOD=true" ];

  meta = with lib; {
    homepage = "https://github.com/xmm7360/xmm7360-pci";
    description = "PCI driver for Fibocom L850-GL modem based on Intel XMM7360 modem";
    downloadPage = "https://github.com/xmm7360/xmm7360-pci";
    license = licenses.isc;
    maintainers = with maintainers; [ flokli hexa ];
    platforms = platforms.linux;
  };
}