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: 37694c8cc0e9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3b8fc18111ae
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 10, 2019

  1. pango: 1.42.1 → 1.42.4 (security)

    Fixes #57183 CVE-2018-15120
    It's a minimalistic version of commit f9943cd.
    vcunat committed Mar 10, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    3b8fc18 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/pango/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/pango/default.nix
Original file line number Diff line number Diff line change
@@ -6,14 +6,14 @@ with stdenv.lib;

let
ver_maj = "1.42";
ver_min = "1";
ver_min = "4";
in
stdenv.mkDerivation rec {
name = "pango-${ver_maj}.${ver_min}";

src = fetchurl {
url = "mirror://gnome/sources/pango/${ver_maj}/${name}.tar.xz";
sha256 = "0cnfgcya3wbs9m8g44cl5ww6wbp6qbw96qvsgkr8ymwqn9b6fnli";
sha256 = "17bwb7dgbncrfsmchlib03k9n3xaalirb39g3yb43gg8cg6p8aqx";
};

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