summary refs log tree commit diff
path: root/pkgs/os-specific/linux/chromium-os/modem-manager/next.nix
blob: d008470b682fb83714e6c0e4b98ed85f37bcd3a9 (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
{ modemmanager, lib, fetchFromGitiles, upstreamInfo
, autoreconfHook, autoconf-archive, gtk-doc, libqmi, libxslt
}:

(modemmanager.override { inherit libqmi; }).overrideAttrs (
  { pname, nativeBuildInputs ? [], passthru ? {}, meta ? {}, ... }:
  {
    pname = "${pname}-chromiumos-next-unstable";
    version = "2019-10-17";

    src = fetchFromGitiles
      upstreamInfo.components."src/third_party/modemmanager-next";

    nativeBuildInputs = nativeBuildInputs ++
      [ autoreconfHook autoconf-archive gtk-doc libxslt ];

    passthru = passthru // {
      updateScript = ../update.py;
    };

    meta = with lib; meta // {
      maintainers = with maintainers; [ qyliss ];
    };
  }
)