Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 122aa6d976c4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: eb0c4056703b
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on May 26, 2020

  1. 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).
    romildo committed May 26, 2020
    Copy the full SHA
    01fc61f View commit details
  2. Copy the full SHA
    dbc9dec View commit details

Commits on May 27, 2020

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

    gsettings-qt: 0.1.20170824 -> 0.2
    romildo authored May 27, 2020
    Copy the full SHA
    eb0c405 View commit details
Showing with 18 additions and 9 deletions.
  1. +18 −9 pkgs/development/libraries/gsettings-qt/default.nix
27 changes: 18 additions & 9 deletions pkgs/development/libraries/gsettings-qt/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
{ stdenv, fetchbzr, pkgconfig
{ stdenv, fetchFromGitLab, pkgconfig
, qmake, qtbase, qtdeclarative, wrapQtAppsHook
, glib, gobject-introspection
, genericUpdater, common-updater-scripts
}:

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 = [
@@ -52,9 +55,15 @@ stdenv.mkDerivation {
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; {
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 ];