03422bf834
* gnu/packages/freedesktop.scm (libmbim)[source]: Use HTTPS URL.
616 lines
24 KiB
Scheme
616 lines
24 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
|
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
|
;;; Copyright © 2015 Andy Wingo <wingo@pobox.com>
|
|
;;; Copyright © 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
|
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
|
;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
|
;;;
|
|
;;; 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 freedesktop)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix download)
|
|
#:use-module (guix git-download)
|
|
#:use-module (guix build-system gnu)
|
|
#:use-module (guix build-system python)
|
|
#:use-module (gnu packages gnome)
|
|
#:use-module (gnu packages python)
|
|
#:use-module (gnu packages linux)
|
|
#:use-module (gnu packages pkg-config)
|
|
#:use-module (gnu packages autotools)
|
|
#:use-module (gnu packages gettext)
|
|
#:use-module (gnu packages gperf)
|
|
#:use-module (gnu packages graphviz)
|
|
#:use-module (gnu packages gtk)
|
|
#:use-module (gnu packages xml)
|
|
#:use-module (gnu packages docbook)
|
|
#:use-module (gnu packages glib) ;intltool
|
|
#:use-module (gnu packages xdisorg)
|
|
#:use-module (gnu packages xorg)
|
|
#:use-module (gnu packages boost)
|
|
#:use-module (gnu packages m4)
|
|
#:use-module (gnu packages compression)
|
|
#:use-module (gnu packages doxygen)
|
|
#:use-module (gnu packages libffi)
|
|
#:use-module (gnu packages acl)
|
|
#:use-module (gnu packages admin)
|
|
#:use-module (gnu packages polkit)
|
|
#:use-module (gnu packages databases))
|
|
|
|
(define-public xdg-utils
|
|
(package
|
|
(name "xdg-utils")
|
|
(version "1.0.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://portland.freedesktop.org/download/xdg-utils-"
|
|
version ".tgz"))
|
|
(sha256
|
|
(base32
|
|
"1b019d3r1379b60p33d6z44kx589xjgga62ijz9vha95dg8vgbi1"))))
|
|
(build-system gnu-build-system)
|
|
(propagated-inputs
|
|
`(("xprop" ,xprop) ; for Xfce detecting
|
|
("xset" ,xset))) ; for xdg-screensaver
|
|
(arguments
|
|
`(#:tests? #f)) ; no check target
|
|
(home-page "http://portland.freedesktop.org/")
|
|
(synopsis "Freedesktop.org scripts for desktop integration")
|
|
(description "The xdg-utils package is a set of simple scripts that
|
|
provide basic desktop integration functions in the framework of the
|
|
freedesktop.org project.")
|
|
(license license:expat)))
|
|
|
|
(define-public libinput
|
|
(package
|
|
(name "libinput")
|
|
(version "1.2.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://freedesktop.org/software/libinput/"
|
|
name "-" version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"0b3f67xsy1s84cvzw22mjfkbcv6pj4p4yns4h3m0fmb7zqbvjm0p"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("pkg-config" ,pkg-config)))
|
|
(propagated-inputs
|
|
`(("libudev" ,eudev))) ; required by libinput.pc
|
|
(inputs
|
|
`(("libevdev" ,libevdev)
|
|
("mtdev" ,mtdev)
|
|
("libwacom" ,libwacom)))
|
|
(home-page "http://www.freedesktop.org/wiki/Software/libinput/")
|
|
(synopsis "Input devices handling library")
|
|
(description
|
|
"Libinput is a library to handle input devices for display servers and
|
|
other applications that need to directly deal with input devices.")
|
|
(license license:x11)))
|
|
|
|
(define-public libxdg-basedir
|
|
(package
|
|
(name "libxdg-basedir")
|
|
(version "1.2.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/devnev/libxdg-basedir/archive/"
|
|
name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0s28c7sfwqimsmb3kn91mx7wi55fs3flhbmynl9k60rrllr00aqw"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
'(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'autogen
|
|
(lambda _
|
|
;; Run 'configure' in its own phase, not now.
|
|
(substitute* "autogen.sh"
|
|
(("^.*\\./configure.*") ""))
|
|
(zero? (system* "sh" "autogen.sh")))))))
|
|
(native-inputs
|
|
`(("autoconf" ,autoconf)
|
|
("automake" ,automake)
|
|
("libtool" ,libtool)))
|
|
(home-page "https://github.com/devnev/libxdg-basedir")
|
|
(synopsis "Implementation of the XDG Base Directory specification")
|
|
(description
|
|
"libxdg-basedir is a C library providing some functions to use with
|
|
the freedesktop.org XDG Base Directory specification.")
|
|
(license license:expat)))
|
|
|
|
(define-public elogind
|
|
(package
|
|
(name "elogind")
|
|
(version "219.13")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://wingolog.org/pub/" name "/"
|
|
name "-" version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"0swwsgm28radjxf0s05a907wf0n524lckdya0rm3kqw6gy1hiax2"))
|
|
(modules '((guix build utils)))
|
|
(snippet
|
|
'(begin
|
|
(use-modules (guix build utils))
|
|
(substitute* "Makefile.am"
|
|
;; Avoid validation against DTD because the DTDs for
|
|
;; both doctype 4.2 and 4.5 are needed.
|
|
(("XSLTPROC_FLAGS = ") "XSLTPROC_FLAGS = --novalid"))))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
`(#:configure-flags
|
|
(list (string-append "--with-libcap="
|
|
(assoc-ref %build-inputs "libcap"))
|
|
(string-append "--with-udevrulesdir="
|
|
(assoc-ref %outputs "out")
|
|
"/lib/udev/rules.d"))
|
|
#:make-flags '("PKTTYAGENT=/run/current-system/profile/bin/pkttyagent")
|
|
#:phases (modify-phases %standard-phases
|
|
(add-before 'build 'fix-service-file
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
;; Fix the file name of the 'elogind' binary in the D-Bus
|
|
;; '.service' file.
|
|
(substitute* "src/login/org.freedesktop.login1.service"
|
|
(("^Exec=.*")
|
|
(string-append "Exec=" (assoc-ref %outputs "out")
|
|
"/libexec/elogind/elogind\n"))))))))
|
|
(native-inputs
|
|
`(("intltool" ,intltool)
|
|
("gettext" ,gnu-gettext)
|
|
("docbook-xsl" ,docbook-xsl)
|
|
("docbook-xml" ,docbook-xml)
|
|
("xsltproc" ,libxslt)
|
|
("m4" ,m4)
|
|
("libxml2" ,libxml2) ;for XML_CATALOG_FILES
|
|
("pkg-config" ,pkg-config)
|
|
("gperf" ,gperf)))
|
|
(inputs
|
|
`(("linux-pam" ,linux-pam)
|
|
("linux-libre-headers" ,linux-libre-headers)
|
|
("libcap" ,libcap)
|
|
("shepherd" ,shepherd) ;for 'halt' and 'reboot', invoked
|
|
;when pressing the power button
|
|
("dbus" ,dbus)
|
|
("eudev" ,eudev)))
|
|
(home-page "https://github.com/wingo/elogind")
|
|
(synopsis "User, seat, and session management service")
|
|
(description "Elogind is the systemd project's \"logind\" service,
|
|
extracted out as a separate project. Elogind integrates with PAM to provide
|
|
the org.freedesktop.login1 interface over the system bus, allowing other parts
|
|
of a the system to know what users are logged in, and where.")
|
|
(license license:lgpl2.1+)))
|
|
|
|
(define-public python-pyxdg
|
|
(package
|
|
(name "python-pyxdg")
|
|
(version "0.25")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://pypi.python.org/packages/source/p/pyxdg/pyxdg-"
|
|
version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"179767h8m634ydlm4v8lnz01ba42gckfp684id764zaip7h87s41"))))
|
|
(build-system python-build-system)
|
|
(arguments
|
|
'(#:phases
|
|
(alist-replace
|
|
'check
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(setenv "XDG_DATA_DIRS"
|
|
(string-append (assoc-ref inputs "shared-mime-info")
|
|
"/share/"))
|
|
(substitute* "test/test-icon.py"
|
|
(("/usr/share/icons/hicolor/index.theme")
|
|
(string-append (assoc-ref inputs "hicolor-icon-theme")
|
|
"/share/icons/hicolor/index.theme")))
|
|
|
|
;; One test fails with:
|
|
;; AssertionError: 'x-apple-ios-png' != 'png'
|
|
(substitute* "test/test-mime.py"
|
|
(("self.check_mimetype\\(imgpng, 'image', 'png'\\)") "#"))
|
|
(zero? (system* "nosetests" "-v")))
|
|
%standard-phases)))
|
|
(native-inputs
|
|
`(("shared-mime-info" ,shared-mime-info) ;for tests
|
|
("hicolor-icon-theme" ,hicolor-icon-theme) ;for tests
|
|
("python-nose" ,python-nose)
|
|
("python-setuptools" ,python-setuptools)))
|
|
(home-page "http://freedesktop.org/wiki/Software/pyxdg")
|
|
(synopsis "Implementations of freedesktop.org standards in Python")
|
|
(description
|
|
"PyXDG is a collection of implementations of freedesktop.org standards in
|
|
Python.")
|
|
(license license:lgpl2.0)))
|
|
|
|
(define-public python2-pyxdg
|
|
(package-with-python2 python-pyxdg))
|
|
|
|
(define-public wayland
|
|
(package
|
|
(name "wayland")
|
|
(version "1.10.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://wayland.freedesktop.org/releases/"
|
|
name "-" version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"1p307ly1yyqjnzn9dbv78yffql2qszn84qk74lwanl3gma8fgxjb"))))
|
|
(build-system gnu-build-system)
|
|
(arguments `(#:parallel-tests? #f))
|
|
(native-inputs
|
|
`(("doxygen" ,doxygen)
|
|
("graphviz" ,graphviz)
|
|
("pkg-config" ,pkg-config)
|
|
("xmlto" ,xmlto)
|
|
("xsltproc" ,libxslt)))
|
|
(inputs
|
|
`(("docbook-xml" ,docbook-xml)
|
|
("docbook-xsl" ,docbook-xsl)
|
|
("expat" ,expat)
|
|
("libffi" ,libffi)
|
|
("libxml2" ,libxml2))) ; for XML_CATALOG_FILES
|
|
(home-page "https://wayland.freedesktop.org/")
|
|
(synopsis "Display server protocol")
|
|
(description
|
|
"Wayland is a protocol for a compositor to talk to its clients as well as
|
|
a C library implementation of that protocol. The compositor can be a standalone
|
|
display server running on Linux kernel modesetting and evdev input devices, an X
|
|
application, or a wayland client itself. The clients can be traditional
|
|
applications, X servers (rootless or fullscreen) or other display servers.")
|
|
(license license:x11)))
|
|
|
|
(define-public exempi
|
|
(package
|
|
(name "exempi")
|
|
(version "2.2.2")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://libopenraw.freedesktop.org/download/"
|
|
name "-" version ".tar.bz2"))
|
|
(sha256
|
|
(base32
|
|
"01vcd1mfn2s0iiq2cjyzgvnxx6kcq9cwra1iipijhs0vwvjx0yhf"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
`(#:configure-flags (list (string-append "--with-boost="
|
|
(assoc-ref %build-inputs "boost")))))
|
|
(native-inputs
|
|
`(("boost" ,boost))) ; tests
|
|
(inputs
|
|
`(("expat" ,expat)
|
|
("zlib" ,zlib)))
|
|
(home-page "https://wiki.freedesktop.org/libopenraw/Exempi")
|
|
(synopsis "XMP metadata handling library")
|
|
(description "Exempi is an implementation of the Extensible Metadata
|
|
Platform (XMP), which enables embedding metadata in PDF and image formats.")
|
|
(license license:bsd-3)))
|
|
|
|
(define-public libatasmart
|
|
(package
|
|
(name "libatasmart")
|
|
(version "0.19")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://0pointer.de/public/"
|
|
name "-" version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"138gvgdwk6h4ljrjsr09pxk1nrki4b155hqdzyr8mlk3bwsfmw31"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("pkg-config" ,pkg-config)))
|
|
(inputs
|
|
`(("udev" ,eudev)))
|
|
(home-page "http://0pointer.de/blog/projects/being-smart.html")
|
|
(synopsis "ATA S.M.A.R.T. reading and parsing library")
|
|
(description
|
|
"This library supports a subset of the ATA S.M.A.R.T. (Self-Monitoring,
|
|
Analysis and Reporting Technology) functionality.")
|
|
(license license:lgpl2.1+)))
|
|
|
|
(define-public udisks
|
|
(package
|
|
(name "udisks")
|
|
(version "2.1.6")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://udisks.freedesktop.org/releases/"
|
|
name "-" version ".tar.bz2"))
|
|
(sha256
|
|
(base32
|
|
"0spl155k0g2l2hvqf8xyjv08i68gfyhzpjva6cwlzxx0bz4gbify"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("glib:bin" ,glib "bin") ; for glib-mkenums
|
|
("gobject-introspection" ,gobject-introspection)
|
|
("intltool" ,intltool)
|
|
("pkg-config" ,pkg-config)
|
|
("xsltproc" ,libxslt)))
|
|
(propagated-inputs
|
|
`(("glib" ,glib))) ; required by udisks2.pc
|
|
(inputs
|
|
`(("acl" ,acl)
|
|
("libatasmart" ,libatasmart)
|
|
("libgudev" ,libgudev)
|
|
("polkit" ,polkit)
|
|
("util-linux" ,util-linux)))
|
|
(outputs '("out"
|
|
"doc")) ;5 MiB of gtk-doc HTML
|
|
(arguments
|
|
`(#:tests? #f ; requiring system message dbus
|
|
#:configure-flags
|
|
(list "--disable-man"
|
|
"--localstatedir=/var"
|
|
"--enable-fhs-media" ;mount devices in /media, not /run/media
|
|
(string-append "--with-html-dir="
|
|
(assoc-ref %outputs "doc")
|
|
"/share/doc/udisks/html")
|
|
(string-append "--with-udevdir=" %output "/lib/udev"))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before
|
|
'configure 'fix-girdir
|
|
(lambda _
|
|
;; Install introspection data to its own output.
|
|
(substitute* "udisks/Makefile.in"
|
|
(("girdir = .*")
|
|
"girdir = $(datadir)/gir-1.0\n")
|
|
(("typelibsdir = .*")
|
|
"typelibsdir = $(libdir)/girepository-1.0\n"))))
|
|
(add-after 'install 'set-mount-file-name
|
|
(lambda* (#:key outputs inputs #:allow-other-keys)
|
|
;; Tell 'udisksd' where to find the 'mount' command.
|
|
(let ((out (assoc-ref outputs "out"))
|
|
(utils (assoc-ref inputs "util-linux")))
|
|
(wrap-program (string-append out "/libexec/udisks2/udisksd")
|
|
`("PATH" ":" prefix
|
|
(,(string-append utils "/bin") ;for 'mount'
|
|
"/run/current-system/profile/bin"
|
|
"/run/current-system/profile/sbin")))
|
|
#t))))))
|
|
(home-page "http://www.freedesktop.org/wiki/Software/udisks/")
|
|
(synopsis "Disk manager service")
|
|
(description
|
|
"UDisks provides interfaces to enumerate and perform operations on disks
|
|
and storage devices. Any application (including unprivileged ones) can access
|
|
the udisksd(8) daemon via the name org.freedesktop.UDisks2 on the system
|
|
message bus.")
|
|
;; The dynamic library are under LGPLv2+, others are GPLv2+.
|
|
(license (list license:gpl2+ license:lgpl2.0+))))
|
|
|
|
(define-public accountsservice
|
|
(package
|
|
(name "accountsservice")
|
|
(version "0.6.40")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://www.freedesktop.org/software/"
|
|
name "/" name "-" version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"0ayb3y3l25dmwxlh9g071h02mphjfbkvi2k5f635bayb01k7akzh"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
'(#:tests? #f ; XXX: tests require DocBook 4.1.2
|
|
#:configure-flags
|
|
'("--localstatedir=/var")
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before
|
|
'configure 'pre-configure
|
|
(lambda _
|
|
;; Don't try to create /var/lib/AccoutsService.
|
|
(substitute* "src/Makefile.in"
|
|
(("\\$\\(MKDIR_P\\).*/lib/AccountsService.*") "true")))))))
|
|
(native-inputs
|
|
`(("glib:bin" ,glib "bin") ; for gdbus-codegen, etc.
|
|
("gobject-introspection" ,gobject-introspection)
|
|
("intltool" ,intltool)
|
|
("pkg-config" ,pkg-config)))
|
|
(inputs
|
|
`(("polkit" ,polkit)))
|
|
(home-page "http://www.freedesktop.org/wiki/Software/AccountsService/")
|
|
(synopsis "D-Bus interface for user account query and manipulation")
|
|
(description
|
|
"The AccountService project provides a set of D-Bus interfaces for querying
|
|
and manipulating user account information and an implementation of these
|
|
interfaces, based on the useradd, usermod and userdel commands.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public libmbim
|
|
(package
|
|
(name "libmbim")
|
|
(version "1.12.2")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://www.freedesktop.org/software/" name "/"
|
|
name "-" version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"0abv0h9c3kbw4bq1b9270sg189jcjj3x3wa91bj836ynwg9m34wl"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("glib:bin" ,glib "bin") ; for glib-mkenums
|
|
("pkg-config" ,pkg-config)
|
|
("python" ,python-wrapper)))
|
|
(propagated-inputs
|
|
`(("glib" ,glib))) ; required by mbim-glib.pc
|
|
(inputs
|
|
`(("libgudev" ,libgudev)))
|
|
(synopsis "Library to communicate with MBIM-powered modems")
|
|
(home-page "http://www.freedesktop.org/wiki/Software/libmbim/")
|
|
(description
|
|
"Libmbim is a GLib-based library for talking to WWAN modems and devices
|
|
which speak the Mobile Interface Broadband Model (MBIM) protocol.")
|
|
(license
|
|
;; The libmbim-glib library is released under the LGPLv2+ license.
|
|
;; The mbimcli tool is released under the GPLv2+ license.
|
|
(list license:lgpl2.0+ license:gpl2+))))
|
|
|
|
(define-public libqmi
|
|
(package
|
|
(name "libqmi")
|
|
(version "1.12.8")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://www.freedesktop.org/software/" name "/"
|
|
name "-" version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"19w2zkm5xl6i3vm1xhjjclks4awas17gfbb2k5y66gwnkiykjfnj"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("glib:bin" ,glib "bin") ; for glib-mkenums
|
|
("pkg-config" ,pkg-config)
|
|
("python" ,python-wrapper)))
|
|
(propagated-inputs
|
|
`(("glib" ,glib))) ; required by qmi-glib.pc
|
|
(synopsis "Library to communicate with QMI-powered modems")
|
|
(home-page "https://www.freedesktop.org/wiki/Software/libqmi/")
|
|
(description
|
|
"Libqmi is a GLib-based library for talking to WWAN modems and devices
|
|
which speak the Qualcomm MSM Interface (QMI) protocol.")
|
|
(license
|
|
;; The libqmi-glib library is released under the LGPLv2+ license.
|
|
;; The qmicli tool is released under the GPLv2+ license.
|
|
(list license:lgpl2.0+ license:gpl2+))))
|
|
|
|
(define-public modem-manager
|
|
(package
|
|
(name "modem-manager")
|
|
(version "1.4.12")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://www.freedesktop.org/software/ModemManager/"
|
|
"ModemManager-" version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"1cvhpkbdch9a77sdir0wcks45m2zlvq1sna2ly2v4lx9fm9h7xby"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
'(#:configure-flags
|
|
`(,(string-append "--with-udev-base-dir=" %output "/lib/udev"))))
|
|
(native-inputs
|
|
`(("glib:bin" ,glib "bin") ; for glib-mkenums
|
|
("gobject-introspection" ,gobject-introspection)
|
|
("intltool" ,intltool)
|
|
("pkg-config" ,pkg-config)
|
|
("vala" ,vala)
|
|
;; For testing.
|
|
("dbus" ,dbus)))
|
|
(propagated-inputs
|
|
`(("glib" ,glib))) ; required by mm-glib.pc
|
|
(inputs
|
|
`(("libgudev" ,libgudev)
|
|
("libmbim" ,libmbim)
|
|
("libqmi" ,libqmi)
|
|
("polkit" ,polkit)))
|
|
(synopsis "Mobile broadband modems manager")
|
|
(home-page "http://www.freedesktop.org/wiki/Software/ModemManager/")
|
|
(description
|
|
"ModemManager is a DBus-activated daemon which controls mobile
|
|
broadband (2G/3G/4G) devices and connections. Whether built-in devices, USB
|
|
dongles, bluetooth-paired telephones, or professional RS232/USB devices with
|
|
external power supplies, ModemManager is able to prepare and configure the
|
|
modems and setup connections with them.")
|
|
(license license:gpl2+)))
|
|
|
|
(define-public telepathy-logger
|
|
(package
|
|
(name "telepathy-logger")
|
|
(version "0.8.2")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://telepathy.freedesktop.org/releases/"
|
|
name "/" name "-" version ".tar.bz2"))
|
|
(sha256
|
|
(base32
|
|
"1bjx85k7jyfi5pvl765fzc7q2iz9va51anrc2djv7caksqsdbjlg"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
'(#:parallel-tests? #f
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before 'check 'pre-check
|
|
(lambda _
|
|
(setenv "HOME" (getenv "TMPDIR"))
|
|
#t)))))
|
|
(native-inputs
|
|
`(("glib:bin" ,glib "bin") ; for glib-genmarshal, etc.
|
|
("gobject-introspection" ,gobject-introspection)
|
|
("intltool" ,intltool)
|
|
("pkg-config" ,pkg-config)
|
|
("python" ,python-2)
|
|
("xsltproc" ,libxslt)))
|
|
(propagated-inputs
|
|
;; telepathy-logger-0.2.pc refers to all these.
|
|
`(("libxml2" ,libxml2)
|
|
("sqlite" ,sqlite)
|
|
("telepathy-glib" ,telepathy-glib)))
|
|
(synopsis "Telepathy logger library")
|
|
(home-page "http://telepathy.freedesktop.org/")
|
|
(description
|
|
"Telepathy logger is a headless observer client that logs information
|
|
received by the Telepathy framework. It features pluggable backends to log
|
|
different sorts of messages in different formats.")
|
|
(license license:lgpl2.1+)))
|
|
|
|
(define-public colord-gtk
|
|
(package
|
|
(name "colord-gtk")
|
|
(version "0.1.26")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://www.freedesktop.org/software/colord"
|
|
"/releases/" name "-" version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"0i9y3bb5apj6a0f8cx36l6mjzs7xc0k7nf0magmf58vy2mzhpl18"))))
|
|
(build-system gnu-build-system)
|
|
(arguments '(#:tests? #f)) ; require the colord system service
|
|
(native-inputs
|
|
`(("gobject-introspection" ,gobject-introspection)
|
|
("intltool" ,intltool)
|
|
("pkg-config" ,pkg-config)
|
|
("vala" ,vala)))
|
|
(propagated-inputs
|
|
;; colord-gtk.pc refers to all these.
|
|
`(("colord" ,colord)
|
|
("gtk+" ,gtk+)))
|
|
(synopsis "GTK integration for libcolord")
|
|
(home-page "http://www.freedesktop.org/software/colord/")
|
|
(description
|
|
"This is a GTK+ convenience library for interacting with colord. It is
|
|
useful for both applications which need colour management and applications that
|
|
wish to perform colour calibration.")
|
|
(license license:lgpl2.1+)))
|