mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
gnugrep,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
scdoc,
|
|
curl,
|
|
glib,
|
|
libgpiod,
|
|
libgudev,
|
|
libusb1,
|
|
modemmanager,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "eg25-manager";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "mobian1";
|
|
repo = "eg25-manager";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-hOOYrEM+W7nHc6AQMYg6XQj4dgkLoBQe9S1F65TWPUI=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace 'udev/80-modem-eg25.rules' \
|
|
--replace-fail '/bin/grep' '${lib.getExe gnugrep}'
|
|
'';
|
|
|
|
depsBuildBuild = [ pkg-config ];
|
|
|
|
nativeBuildInputs = [
|
|
glib # Contains gdbus-codegen program
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
scdoc
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
glib
|
|
libgpiod
|
|
libgudev
|
|
libusb1
|
|
modemmanager
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
description = "Manager daemon for the Quectel EG25 mobile broadband modem found on the Pine64 PinePhone and PinePhone Pro";
|
|
homepage = "https://gitlab.com/mobian1/eg25-manager";
|
|
changelog = "https://gitlab.com/mobian1/eg25-manager/-/tags/${finalAttrs.version}";
|
|
license = lib.licenses.gpl3Plus;
|
|
mainProgram = "eg25-manager";
|
|
maintainers = with lib.maintainers; [ Luflosi ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|