modem-manager-gui: init at 0.0.19.1

This commit is contained in:
Ales Huzik 2018-10-24 16:54:18 +11:00 committed by Jan Tojnar
parent 29080af27f
commit 6d34e36ed7
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4
3 changed files with 57 additions and 0 deletions

View file

@ -143,6 +143,11 @@
github = "ahmedtd";
name = "Taahir Ahmed";
};
ahuzik = {
email = "ales.guzik@gmail.com";
github = "alesguzik";
name = "Ales Huzik";
};
aij = {
email = "aij+git@mrph.org";
github = "aij";

View file

@ -0,0 +1,50 @@
{ stdenv, buildEnv, pkgconfig, python3, fetchhg, gtk3, glib, gdbm, gtkspell3, itstool, libappindicator-gtk3, perlPackages, glibcLocales, meson, ninja }:
stdenv.mkDerivation rec {
name = "modem-manager-gui-${version}";
version = "0.0.19.1";
src = fetchhg {
url = https://linuxonly@bitbucket.org/linuxonly/modem-manager-gui;
rev = "version ${version}";
sha256 = "11iibh36567814h2bz41sa1072b86p1l13xyj670pwkh9k8kw8fd";
};
LC_ALL = "en_US.utf-8";
nativeBuildInputs = [
pkgconfig
python3
perlPackages.Po4a
itstool
glibcLocales
meson
ninja
];
buildInputs = [
gtk3
glib
gdbm
gtkspell3
libappindicator-gtk3
];
postPatch = ''
patchShebangs man/manhelper.py
'';
meta = with stdenv.lib; {
description = "An app to send/receive SMS, make USSD requests, control mobile data usage and more";
longDescription = ''
A simple GTK+ based GUI compatible with Modem manager, Wader and oFono
system services able to control EDGE/3G/4G broadband modem specific
functions. You can check balance of your SIM card, send or receive SMS
messages, control mobile traffic consumption and more.
'';
homepage = https://linuxonly.ru/page/modem-manager-gui;
license = licenses.gpl3;
maintainers = with maintainers; [ ahuzik ];
platforms = platforms.linux;
};
}

View file

@ -4154,6 +4154,8 @@ with pkgs;
modemmanager = callPackage ../tools/networking/modem-manager {};
modem-manager-gui = callPackage ../applications/networking/modem-manager-gui {};
modsecurity_standalone = callPackage ../tools/security/modsecurity { };
molly-guard = callPackage ../os-specific/linux/molly-guard { };