gsettings-qt: 0.1.20170824 -> 0.2

- Update to version 0.2
- Upstream moved to gitlab (see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=951019).
This commit is contained in:
José Romildo Malaquias 2020-05-26 17:31:42 -03:00
parent 72066757c8
commit 01fc61f585

View file

@ -1,16 +1,18 @@
{ stdenv, fetchbzr, pkgconfig { stdenv, fetchFromGitLab, pkgconfig
, qmake, qtbase, qtdeclarative, wrapQtAppsHook , qmake, qtbase, qtdeclarative, wrapQtAppsHook
, glib, gobject-introspection , glib, gobject-introspection
}: }:
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 = [
@ -53,8 +55,8 @@ stdenv.mkDerivation {
''; '';
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 ];