summary refs log tree commit diff
path: root/pkgs/os-specific/linux/chromium-os/modem-manager/next.nix
blob: 17d95c2b3bc985331e90800828485a0963a2dbde (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, 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 libxslt ];

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

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