2015-12-31 16:25:41 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2019-06-17 08:28:42 +02:00
|
|
|
;;; Copyright © 2016, 2017, 2019 Efraim Flashner <efraim@flashner.co.il>
|
2017-04-25 20:41:17 +02:00
|
|
|
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
|
2017-01-03 23:15:31 +01:00
|
|
|
;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
|
2017-05-25 09:35:30 +02:00
|
|
|
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
2019-04-15 06:20:45 +02:00
|
|
|
;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
2015-12-31 16:25:41 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages connman)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (guix licenses)
|
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
#:use-module (gnu packages admin)
|
2016-11-21 21:54:31 +01:00
|
|
|
#:use-module (gnu packages enlightenment)
|
2015-12-31 16:25:41 +01:00
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2017-01-01 18:30:02 +01:00
|
|
|
#:use-module (gnu packages polkit)
|
2015-12-31 16:25:41 +01:00
|
|
|
#:use-module (gnu packages python)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 14:21:30 +01:00
|
|
|
#:use-module (gnu packages python-xyz)
|
2017-01-01 18:35:28 +01:00
|
|
|
#:use-module (gnu packages qt)
|
2015-12-31 16:25:41 +01:00
|
|
|
#:use-module (gnu packages readline)
|
|
|
|
#:use-module (gnu packages samba)
|
|
|
|
#:use-module (gnu packages tls)
|
|
|
|
#:use-module (gnu packages vpn))
|
|
|
|
|
|
|
|
(define-public connman
|
|
|
|
(package
|
|
|
|
(name "connman")
|
2019-04-15 06:26:13 +02:00
|
|
|
(version "1.37")
|
2015-12-31 16:25:41 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2016-05-09 16:02:51 +02:00
|
|
|
(uri (string-append "mirror://kernel.org/linux/network/connman/"
|
2019-04-15 06:20:45 +02:00
|
|
|
"connman-" version ".tar.xz"))
|
2015-12-31 16:25:41 +01:00
|
|
|
(sha256
|
2019-04-15 06:26:13 +02:00
|
|
|
(base32 "05kfjiqhqfmbbwc4snnyvi5hc4zxanac62f6gcwaf5mvn0z9pqkc"))))
|
2015-12-31 16:25:41 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list "--enable-nmcompat"
|
2017-01-01 18:30:02 +01:00
|
|
|
"--enable-polkit"
|
2015-12-31 16:25:41 +01:00
|
|
|
"--enable-openconnect"
|
|
|
|
"--enable-openvpn"
|
|
|
|
"--enable-vpnc"
|
|
|
|
"--enable-pptp"
|
|
|
|
"--enable-l2tp"
|
2016-11-09 08:39:00 +01:00
|
|
|
"--localstatedir=/var"
|
2015-12-31 16:25:41 +01:00
|
|
|
(string-append
|
|
|
|
"--with-dbusconfdir=" (assoc-ref %outputs "out") "/etc")
|
|
|
|
(string-append
|
|
|
|
"--with-dbusdatadir=" (assoc-ref %outputs "out") "/share"))))
|
|
|
|
(native-inputs
|
2018-03-16 16:50:14 +01:00
|
|
|
`(("pkg-config" ,pkg-config)
|
2015-12-31 16:25:41 +01:00
|
|
|
("python" ,python-2)))
|
|
|
|
(inputs
|
|
|
|
`(("dbus" ,dbus)
|
|
|
|
("glib" ,glib)
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
("iptables" ,iptables)
|
2017-01-01 18:30:02 +01:00
|
|
|
("polkit" ,polkit) ;so connman can be used by unprivileged users
|
2015-12-31 16:25:41 +01:00
|
|
|
("readline" ,readline)
|
|
|
|
;; These inputs are needed for connman to include the interface to
|
|
|
|
;; these technologies so IF they are installed they can be used.
|
|
|
|
;; TODO: add neard, ofono
|
|
|
|
("openconnect" ,openconnect)
|
|
|
|
("openvpn" ,openvpn)
|
2018-03-16 16:50:14 +01:00
|
|
|
("ppp" ,ppp)
|
2015-12-31 16:25:41 +01:00
|
|
|
("vpnc" ,vpnc)
|
|
|
|
("wpa-supplicant" ,wpa-supplicant)))
|
|
|
|
(home-page "https://01.org/connman")
|
|
|
|
(synopsis "Connection management daemon")
|
|
|
|
(description "Connman provides a daemon for managing Internet connections.
|
|
|
|
The Connection Manager is designed to be slim and to use as few resources as
|
|
|
|
possible. It is fully modular system that can be extended through plug-ins.
|
|
|
|
The plug-in approach allows for easy adaption and modification for various use
|
|
|
|
cases. Connman implements DNS resolving and caching, DHCP clients for both
|
|
|
|
IPv4 and IPv6, link-local IPv4 address handling and tethering (IP connection
|
|
|
|
sharing) to clients via USB, ethernet, WiFi, cellular and Bluetooth.")
|
|
|
|
(license gpl2)))
|
2016-11-21 21:54:31 +01:00
|
|
|
|
|
|
|
(define-public econnman
|
|
|
|
(package
|
|
|
|
(name "econnman")
|
|
|
|
(version "1.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://download.enlightenment.org/rel/apps/"
|
|
|
|
"econnman/econnman-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"057pwwavlvrrq26bncqnfrf449zzaim0zq717xv86av4n940gwv0"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags '("--localstatedir=/var")
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2017-06-18 09:50:10 +02:00
|
|
|
(add-after 'unpack 'set-home-directory
|
|
|
|
;; FATAL: Cannot create run dir '/homeless-shelter/.run' - errno=2
|
|
|
|
(lambda _ (setenv "HOME" "/tmp") #t))
|
2016-11-21 21:54:31 +01:00
|
|
|
(add-after 'install 'wrap-binary
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin/econnman-bin")))
|
|
|
|
(wrap-program bin
|
|
|
|
`("PYTHONPATH" ":" prefix (,(getenv "PYTHONPATH"))))
|
|
|
|
#t))))))
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("efl" ,efl)
|
|
|
|
("python-2" ,python-2)
|
2017-01-03 23:15:31 +01:00
|
|
|
("python2-dbus" ,python2-dbus)
|
2016-11-21 21:54:31 +01:00
|
|
|
("python2-efl" ,python2-efl)))
|
|
|
|
(home-page "https://www.enlightenment.org")
|
|
|
|
(synopsis "Connman User Interface written using the EFL")
|
|
|
|
(description
|
|
|
|
"An EFL user interface for the @code{connman} connection manager.")
|
|
|
|
(license lgpl3)))
|
2017-01-01 18:35:28 +01:00
|
|
|
|
|
|
|
(define-public cmst
|
|
|
|
(package
|
|
|
|
(name "cmst")
|
2017-12-07 06:02:56 +01:00
|
|
|
(version "2017.09.19")
|
2017-01-01 18:35:28 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://github.com/andrew-bibb/cmst/releases/download/cmst-"
|
2017-12-07 06:02:56 +01:00
|
|
|
version "/cmst-" version ".tar.xz"))
|
2017-01-01 18:35:28 +01:00
|
|
|
(sha256
|
2017-12-07 06:02:56 +01:00
|
|
|
(base32 "0dh4639n3l8a19svaagib41hdq5q7x70bnc28dmnwy4jflf38yrm"))))
|
2017-01-01 18:35:28 +01:00
|
|
|
(inputs
|
2017-05-25 09:35:30 +02:00
|
|
|
`(("qtbase" ,qtbase)))
|
2017-01-01 18:35:28 +01:00
|
|
|
(native-inputs
|
2017-05-25 09:35:30 +02:00
|
|
|
`(("qttools" ,qttools)))
|
2017-01-01 18:35:28 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2019-01-24 23:10:25 +01:00
|
|
|
(invoke "qmake"
|
|
|
|
(string-append "PREFIX="
|
|
|
|
(assoc-ref outputs "out")))))
|
2019-06-17 08:28:42 +02:00
|
|
|
(add-before 'build 'fix-Makefiles
|
2017-01-01 18:35:28 +01:00
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(substitute* (find-files "." "Makefile")
|
|
|
|
(("INSTALL_ROOT)")
|
|
|
|
(string-append "INSTALL_ROOT)" out))
|
2019-06-17 08:28:42 +02:00
|
|
|
(("/usr") ""))
|
|
|
|
(substitute* '("apps/cmstapp/cmstapp.pro"
|
|
|
|
"apps/cmstapp/code/control_box/controlbox.cpp"
|
|
|
|
"apps/rootapp/rootapp.pro"
|
|
|
|
"apps/rootapp/system/org.cmst.roothelper.service"
|
|
|
|
"cmst.pri"
|
|
|
|
"cmst.pro")
|
|
|
|
(("/usr") out)
|
|
|
|
(("/etc") (string-append out "/etc")))
|
|
|
|
#t))))))
|
2017-01-01 18:35:28 +01:00
|
|
|
(home-page "https://github.com/andrew-bibb/cmst")
|
|
|
|
(synopsis "Qt frontend for Connman")
|
|
|
|
(description
|
|
|
|
"Cmst is a Qt based frontend for the @code{connman} connection manager.
|
|
|
|
This package also provides a systemtray icon.")
|
|
|
|
(license x11)))
|