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: 3c2c421a8c88
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8918b8a5229b
Choose a head ref
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on Mar 7, 2019

  1. pango: 1.42.4 -> 1.43.0

    hedning committed Mar 7, 2019
    Copy the full SHA
    6502030 View commit details
  2. squash! networkmanager: 1.14.4 -> 1.17.0

    networkmanager: 1.14.4 -> 1.15.90
    hedning committed Mar 7, 2019
    Copy the full SHA
    5883c20 View commit details
  3. Copy the full SHA
    8918b8a View commit details
2 changes: 1 addition & 1 deletion pkgs/desktops/gnome-3/core/tracker/default.nix
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ in stdenv.mkDerivation rec {
patches = [
(substituteAll {
src = ./fix-paths.patch;
glib-dev = glib.dev;
glib_dev = glib.dev;
})
];

2 changes: 1 addition & 1 deletion pkgs/desktops/gnome-3/core/tracker/fix-paths.patch
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
Name=Tracker Store
Comment=Metadata database store and lookup manager
-Exec=gdbus call -e -d org.freedesktop.DBus -o /org/freedesktop/DBus -m org.freedesktop.DBus.StartServiceByName org.freedesktop.Tracker1 0
+Exec=@glib-dev@/bin/gdbus call -e -d org.freedesktop.DBus -o /org/freedesktop/DBus -m org.freedesktop.DBus.StartServiceByName org.freedesktop.Tracker1 0
+Exec=@glib_dev@/bin/gdbus call -e -d org.freedesktop.DBus -o /org/freedesktop/DBus -m org.freedesktop.DBus.StartServiceByName org.freedesktop.Tracker1 0
Terminal=false
Type=Application
Categories=Utility;
14 changes: 11 additions & 3 deletions pkgs/development/libraries/pango/default.nix
Original file line number Diff line number Diff line change
@@ -1,31 +1,39 @@
{ stdenv, fetchurl, pkgconfig, libXft, cairo, harfbuzz
, libintl, gobject-introspection, darwin, fribidi, gnome3
, gtk-doc, docbook_xsl, docbook_xml_dtd_43, makeFontsConf, freefont_ttf
, meson, ninja
}:

with stdenv.lib;

let
pname = "pango";
version = "1.42.4";
version = "1.43.0";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";

src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "17bwb7dgbncrfsmchlib03k9n3xaalirb39g3yb43gg8cg6p8aqx";
sha256 = "1lnxldmv1a12dq5h0dlq5jyzl4w75k76dp8cn360x2ijlm9w5h6j";
};

outputs = [ "bin" "dev" "out" "devdoc" ];

nativeBuildInputs = [ pkgconfig gobject-introspection gtk-doc docbook_xsl docbook_xml_dtd_43 ];
nativeBuildInputs = [
meson ninja
pkgconfig gobject-introspection gtk-doc docbook_xsl docbook_xml_dtd_43
];
buildInputs = optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
Carbon
CoreGraphics
CoreText
]);
propagatedBuildInputs = [ cairo harfbuzz libXft libintl fribidi ];

mesonFlags = [
"-Denable_docs=true"
];

enableParallelBuilding = true;

# Fontconfig error: Cannot load default config file
4 changes: 2 additions & 2 deletions pkgs/tools/networking/network-manager/default.nix
Original file line number Diff line number Diff line change
@@ -9,11 +9,11 @@ let
pname = "NetworkManager";
in stdenv.mkDerivation rec {
name = "network-manager-${version}";
version = "1.17.0";
version = "1.15.90";

src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0ai7inidh9w7wbi9yr6j5yvzkpy6i9xnsl9iz2wnmv52mqc70r7m";
sha256 = "0d8i67ag15v0sgrkys0jwymz59xb6pixaj4x9xhc6ihgqln9ap3p";
};

outputs = [ "out" "dev" ];