aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/gsettings-qt
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2020-05-26 17:31:42 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2020-05-26 17:34:11 -0300
commit01fc61f585ea93e88371f89e95e25c2516014f36 (patch)
treeaf20dd77d3ae8e1d9c0da149532e7edef63dfc2c /pkgs/development/libraries/gsettings-qt
parent72066757c8bd31cc592914cb944f8d7da569d741 (diff)
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).
Diffstat (limited to 'pkgs/development/libraries/gsettings-qt')
-rw-r--r--pkgs/development/libraries/gsettings-qt/default.nix20
1 files changed, 11 insertions, 9 deletions
diff --git a/pkgs/development/libraries/gsettings-qt/default.nix b/pkgs/development/libraries/gsettings-qt/default.nix
index 5f09f437f04f..27b03a04bdb8 100644
--- a/pkgs/development/libraries/gsettings-qt/default.nix
+++ b/pkgs/development/libraries/gsettings-qt/default.nix
@@ -1,16 +1,18 @@
-{ stdenv, fetchbzr, pkgconfig
+{ stdenv, fetchFromGitLab, pkgconfig
, qmake, qtbase, qtdeclarative, wrapQtAppsHook
, glib, gobject-introspection
}:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
pname = "gsettings-qt";
- version = "0.1.20170824";
+ version = "0.2";
- src = fetchbzr {
- url = "http://bazaar.launchpad.net/~system-settings-touch/gsettings-qt/trunk";
- rev = "85";
- sha256 = "1kcw0fgdyndx9c0dyha11wkj0gi05spdc1adf1609mrinbb4rnyi";
+ src = fetchFromGitLab {
+ group = "ubports";
+ owner = "core";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "14l8xphw4jd9ckqba13cyxq0i362x8lfsd0zlfawwi2z1q1vqm92";
};
nativeBuildInputs = [
@@ -53,8 +55,8 @@ stdenv.mkDerivation {
'';
meta = with stdenv.lib; {
- description = "Qt/QML bindings for GSettings";
- homepage = "https://launchpad.net/gsettings-qt";
+ description = "Library to access GSettings from Qt";
+ homepage = "https://gitlab.com/ubports/core/gsettings-qt";
license = licenses.lgpl3;
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];