nixpkgs/pkgs/applications/networking/modem-manager-gui/default.nix

66 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv
, pkg-config
2019-08-23 16:44:19 +00:00
, python3
, fetchFromGitLab
2019-08-23 16:44:19 +00:00
, gtk3
, glib
, gdbm
, gtkspell3
, ofono
, itstool
, libayatana-appindicator-gtk3
2019-08-23 16:44:19 +00:00
, perlPackages
, glibcLocales
, meson
, ninja
}:
2018-10-24 05:54:18 +00:00
stdenv.mkDerivation rec {
2019-08-23 16:44:19 +00:00
pname = "modem-manager-gui";
version = "0.0.20";
2018-10-24 05:54:18 +00:00
src = fetchFromGitLab {
domain = "salsa.debian.org";
owner = "debian";
repo = "modem-manager-gui";
rev = "upstream%2F${version}";
sha256 = "1pjx4rbsxa7gcs628yjkwb0zqrm5xq8pkmp0cfk4flfk1ryflmgr";
2018-10-24 05:54:18 +00:00
};
nativeBuildInputs = [
pkg-config
2018-10-24 05:54:18 +00:00
python3
perlPackages.Po4a
itstool
meson
ninja
];
buildInputs = [
gtk3
glib
gdbm
gtkspell3
ofono
libayatana-appindicator-gtk3
2018-10-24 05:54:18 +00:00
];
postPatch = ''
patchShebangs man/manhelper.py
'';
meta = with lib; {
2018-10-24 05:54:18 +00:00
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
2018-10-24 05:54:18 +00:00
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";
2018-10-24 05:54:18 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ ahuzik galagora ];
2018-10-24 05:54:18 +00:00
platforms = platforms.linux;
};
}