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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

87 lines
2.4 KiB
Nix
Raw Normal View History

{ lib, stdenv
, pkg-config
2019-08-23 16:44:19 +00:00
, python3
, fetchFromGitLab
, fetchpatch
2019-08-23 16:44:19 +00:00
, gtk3
, glib
, gdbm
, gtkspell3
, ofono
, itstool
, libayatana-appindicator
2019-08-23 16:44:19 +00:00
, perlPackages
, meson
, ninja
}:
2018-10-24 05:54:18 +00:00
stdenv.mkDerivation (finalAttrs: {
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/${finalAttrs.version}";
hash = "sha256-+VXqfA7TUUemY+DWeRHupWb8weJTeiSMZu+orlcmXd4=";
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
2018-10-24 05:54:18 +00:00
];
patches = [
# Fix missing tray icon
(fetchpatch {
url = "https://salsa.debian.org/debian/modem-manager-gui/-/raw/7c3e67a1cf7788d7a4b86be12803870d79aa27f2/debian/patches/fix-tray-icon.patch";
hash = "sha256-9LjCEQl8YfraVlO1W7+Yy7egLAPu5YfnvGvCI3uGFh8=";
})
# Fix build with meson 0.61
# appdata/meson.build:3:5: ERROR: Function does not take positional arguments.
(fetchpatch {
url = "https://salsa.debian.org/debian/modem-manager-gui/-/raw/7c3e67a1cf7788d7a4b86be12803870d79aa27f2/debian/patches/meson0.61.patch";
hash = "sha256-B+tBPIz5RxOwZWYEWttqSKGw2Wbfk0mnBY0Zy0evvAQ=";
})
# Fix segfault on launch: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1004258
# Segmentation fault at address: 0x20
(fetchpatch {
url = "https://salsa.debian.org/debian/modem-manager-gui/-/commit/8ccffd6dd6b42625d09d5408f37f155d91411116.patch";
hash = "sha256-q+B+Bcm3uitJ2IfkCiMo3reFV1C06ekmy1vXWC0oHnw=";
})
];
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;
2023-11-27 01:17:53 +00:00
mainProgram = "modem-manager-gui";
2018-10-24 05:54:18 +00:00
};
})