summary refs log blame commit diff
path: root/pkgs/os-specific/linux/chromium-os/modem-manager/next.nix
blob: 17d95c2b3bc985331e90800828485a0963a2dbde (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                   
                                   
  
 
                                                           





                                                                   
                                                                  
 
                                            
                                                  









                                                 
{ 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 ];
    };
  }
)