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

Commits on May 29, 2019

  1. Copy the full SHA
    98bdeb0 View commit details

Commits on May 31, 2019

  1. Merge pull request #62196 from dtzWill/update/harfbuzz-2.5.0

    harfbuzz: 2.3.1 -> 2.5.0
    dtzWill authored May 31, 2019
    Copy the full SHA
    9b65cb1 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/harfbuzz/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/harfbuzz/default.nix
Original file line number Diff line number Diff line change
@@ -8,16 +8,16 @@
}:

let
version = "2.3.1";
version = "2.5.0";
inherit (stdenv.lib) optional optionals optionalString;
in

stdenv.mkDerivation {
name = "harfbuzz${optionalString withIcu "-icu"}-${version}";

src = fetchurl {
url = "https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-${version}.tar.bz2";
sha256 = "0s74ramsbfa183rxkidqgfd2vbhrwicnrqzqsq440dwibffnj1gj";
url = "https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-${version}.tar.xz";
sha256 = "1vqnqkzz7ws29g5djf31jj6a9dbid8a27a8y4balmy5lipwp774m";
};

postPatch = ''