depot/pkgs/by-name/eg/eg25-manager/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

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.2";
src = fetchFromGitLab {
owner = "mobian1";
repo = "eg25-manager";
rev = finalAttrs.version;
hash = "sha256-Zna+JplmYrxPYsXToJ3vKOPzPMZYB3bEdfT8GIAHATs=";
};
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;
};
})