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: 87f757e834f4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2a732252df21
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 14, 2017

  1. gtk+: 3.22.19 -> 3.22.21

    vbgl committed Sep 14, 2017
    Copy the full SHA
    2f70241 View commit details
  2. Copy the full SHA
    2a73225 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/gtk+/3.x.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/gtk+/3.x.nix
Original file line number Diff line number Diff line change
@@ -13,15 +13,15 @@ with stdenv.lib;

let
ver_maj = "3.22";
ver_min = "19";
ver_min = "21";
version = "${ver_maj}.${ver_min}";
in
stdenv.mkDerivation rec {
name = "gtk+3-${version}";

src = fetchurl {
url = "mirror://gnome/sources/gtk+/${ver_maj}/gtk+-${version}.tar.xz";
sha256 = "9883d3ca5244f9b3168ce660e87d52900e141d0f7147dea0640bdd6fe8e5166c";
sha256 = "1bd3c1a85cfb4db112cabb5379abb05a1a94fe43052d309d573493fca00e6b87";
};

outputs = [ "out" "dev" ];