Merge pull request #88983 from romildo/upd.gsettings-qt

gsettings-qt: 0.1.20170824 -> 0.2
This commit is contained in:
José Romildo Malaquias 2020-05-27 13:38:42 -03:00 committed by GitHub
commit eb0c405670
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,19 @@
{ stdenv, fetchbzr, pkgconfig { stdenv, fetchFromGitLab, pkgconfig
, qmake, qtbase, qtdeclarative, wrapQtAppsHook , qmake, qtbase, qtdeclarative, wrapQtAppsHook
, glib, gobject-introspection , glib, gobject-introspection
, genericUpdater, common-updater-scripts
}: }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
pname = "gsettings-qt"; pname = "gsettings-qt";
version = "0.1.20170824"; version = "0.2";
src = fetchbzr { src = fetchFromGitLab {
url = "http://bazaar.launchpad.net/~system-settings-touch/gsettings-qt/trunk"; group = "ubports";
rev = "85"; owner = "core";
sha256 = "1kcw0fgdyndx9c0dyha11wkj0gi05spdc1adf1609mrinbb4rnyi"; repo = pname;
rev = "v${version}";
sha256 = "14l8xphw4jd9ckqba13cyxq0i362x8lfsd0zlfawwi2z1q1vqm92";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -52,9 +55,15 @@ stdenv.mkDerivation {
done done
''; '';
passthru.updateScript = genericUpdater {
inherit pname version;
rev-prefix = "v";
versionLister = "${common-updater-scripts}/bin/list-git-tags ${src.meta.homepage}";
};
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Qt/QML bindings for GSettings"; description = "Library to access GSettings from Qt";
homepage = "https://launchpad.net/gsettings-qt"; homepage = "https://gitlab.com/ubports/core/gsettings-qt";
license = licenses.lgpl3; license = licenses.lgpl3;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.romildo ]; maintainers = [ maintainers.romildo ];