[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
86/100: gnu: Add libcloudproviders.
From: |
guix-commits |
Subject: |
86/100: gnu: Add libcloudproviders. |
Date: |
Wed, 8 Jul 2020 03:36:57 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 1d555bd967e25a05f3050382d261729db43e87eb
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Sat Jul 4 06:49:44 2020 -0400
gnu: Add libcloudproviders.
* gnu/packages/gnome.scm (libcloudproviders): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gnome.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 08f1176..079682f 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -263,6 +263,54 @@ Desktop. It is designed to be as simple as possible and
has some unique
features to enable users to create their discs easily and quickly.")
(license license:gpl2+)))
+(define-public libcloudproviders
+ (package
+ (name "libcloudproviders")
+ (version "0.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32 "0aars24myf6n8b8hm1n12hsgcm54097kpbpm4ba31zp1l4y22qs7"))))
+ (build-system meson-build-system)
+ (outputs '("out" "doc"))
+ (arguments
+ `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
+ #:configure-flags
+ (list
+ "-Denable-gtk-doc=true")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'move-doc
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (assoc-ref outputs "doc")))
+ (mkdir-p (string-append doc "/share"))
+ (rename-file
+ (string-append out "/share/gtk-doc")
+ (string-append doc "/share/gtk-doc"))
+ #t))))))
+ (native-inputs
+ `(("glib:bin" ,glib "bin")
+ ("gobject-introspection" ,gobject-introspection)
+ ("gtk-doc" ,gtk-doc)
+ ("pkg-config" ,pkg-config)
+ ("vala" ,vala)))
+ (inputs
+ `(("glib" ,glib)
+ ("glib-networking" ,glib-networking)))
+ (synopsis "Cloudproviders Integration API")
+ (description "Libcloudproviders is a DBus API that allows cloud storage
sync
+clients to expose their services. Clients such as file managers and desktop
+environments can then provide integrated access to the cloud providers
+services.")
+ (home-page
"https://csorianognome.wordpress.com/2015/07/07/cloud-providers/")
+ (license license:lgpl3+)))
+
(define-public sysprof
(package
(name "sysprof")
- 79/100: gnu: Add wildmidi., (continued)
- 79/100: gnu: Add wildmidi., guix-commits, 2020/07/08
- 73/100: gnu: Add srt., guix-commits, 2020/07/08
- 81/100: gnu: Add iqa., guix-commits, 2020/07/08
- 84/100: gnu: Add rust-imgref., guix-commits, 2020/07/08
- 85/100: gnu: gtk+-2: Update package definition., guix-commits, 2020/07/08
- 88/100: gnu: gtk-doc: Update package definition., guix-commits, 2020/07/08
- 89/100: gnu: gtk+: Propagate libcloudproviders., guix-commits, 2020/07/08
- 92/100: gnu: gtksourceview-2: Update package definition., guix-commits, 2020/07/08
- 93/100: gnu: fuse: Update package definition., guix-commits, 2020/07/08
- 97/100: gnu: Add opensles., guix-commits, 2020/07/08
- 86/100: gnu: Add libcloudproviders.,
guix-commits <=
- 87/100: gnu: gtk+: Update package definition., guix-commits, 2020/07/08
- 77/100: gnu: Add vo-aacenc., guix-commits, 2020/07/08
- 82/100: gnu: Add rtmpdump., guix-commits, 2020/07/08
- 95/100: gnu: gvfs: Update package definition., guix-commits, 2020/07/08
- 99/100: gnu: gst-plugins-ugly: Update package definition., guix-commits, 2020/07/08
- 94/100: gnu: libgdata: Update package definition., guix-commits, 2020/07/08
- 96/100: gnu: Add openni2., guix-commits, 2020/07/08
- 76/100: gnu: Add transcode., guix-commits, 2020/07/08
- 78/100: gnu: Add webrtc-audio-processing., guix-commits, 2020/07/08
- 80/100: gnu: Add zxing-cpp., guix-commits, 2020/07/08