mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
libcloudproviders: 0.3.1 → 0.3.4
https://gitlab.gnome.org/World/libcloudproviders/-/compare/0.3.1...0.3.4
- A new way to register providers using .desktop files:
6e839d09b1
As before, this is done by monitoring `XDG_DATA_DIRS`.
We just need to link `share/applications` in addition to `share/cloud-providers`,
which is already the case for most DEs.
Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com>
Changelog-reviewed-by: Jan Tojnar <jtojnar@gmail.com>
This commit is contained in:
parent
cccb4e6dfd
commit
6e91958614
@ -1,14 +1,27 @@
|
||||
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, gobject-introspection, vala, gtk-doc, docbook_xsl, glib, mesonEmulatorHook }:
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchurl
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, gobject-introspection
|
||||
, vala
|
||||
, gtk-doc
|
||||
, docbook_xsl
|
||||
, glib
|
||||
, mesonEmulatorHook
|
||||
, gnome
|
||||
}:
|
||||
|
||||
# TODO: Add installed tests once https://gitlab.gnome.org/World/libcloudproviders/issues/4 is fixed
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libcloudproviders";
|
||||
version = "0.3.1";
|
||||
version = "0.3.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://gitlab.gnome.org/World/${pname}/repository/archive.tar.gz?ref=${version}";
|
||||
sha256 = "0zazjhj3xbwxyzi2b2aws7qdnwn092zg9yrk9v3wd19m3mxq5na3";
|
||||
url = "mirror://gnome/sources/libcloudproviders/${lib.versions.majorMinor version}/libcloudproviders-${version}.tar.xz";
|
||||
sha256 = "49cWDD5F/jIWwHx5iLtPyBOXwy0fxhE68O3+hjIDn2U=";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" "devdoc" ];
|
||||
@ -32,6 +45,12 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ glib ];
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome.updateScript {
|
||||
packageName = "libcloudproviders";
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "DBus API that allows cloud storage sync clients to expose their services";
|
||||
homepage = "https://gitlab.gnome.org/World/libcloudproviders";
|
||||
|
Loading…
Reference in New Issue
Block a user