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

Commits on Oct 7, 2019

  1. ibus: use versioned URLs for UCD data

    Otherwise, the latest version will be downloaded, which can cause a hash mismatch
    if the hash was taken from a prior version.
    wizeman committed Oct 7, 2019
    Copy the full SHA
    3e80326 View commit details

Commits on Oct 15, 2019

  1. Merge pull request #70649 from wizeman/u/fix-ibus-ucd

    ibus: use versioned URLs for UCD data
    globin authored Oct 15, 2019
    Copy the full SHA
    bef6d1a View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/tools/inputmethods/ibus/default.nix
7 changes: 4 additions & 3 deletions pkgs/tools/inputmethods/ibus/default.nix
Original file line number Diff line number Diff line change
@@ -50,18 +50,19 @@ let
};
nativeBuildInputs = [ autoreconfHook ];
};
ucdVersion = "12.0.0";
ucdSrcs = {
NamesList = fetchurl {
url = "https://www.unicode.org/Public/UNIDATA/NamesList.txt";
url = "https://www.unicode.org/Public/${ucdVersion}/ucd/NamesList.txt";
sha256 = "c17c7726f562bd9ef869096807f0297e1edef9a58fdae1fbae487378fa43586f";
};
Blocks = fetchurl {
url = "https://www.unicode.org/Public/UNIDATA/Blocks.txt";
url = "https://www.unicode.org/Public/${ucdVersion}/ucd/Blocks.txt";
sha256 = "a1a3ca4381eb91f7b65afe7cb7df615cdcf67993fef4b486585f66b349993a10";
};
};
ucd = stdenv.mkDerivation {
name = "ucd-12.0.0";
name = "ucd-${ucdVersion}";
dontUnpack = true;
installPhase = ''
mkdir $out