Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: db31e48c5c8d
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 10e5f1f87ace
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 15, 2020

  1. intltool: add a backup url for a patch

    Fixes:
    
      Failed to connect to sources.debian.org port 443: Connection timed out
    
    (cherry picked from commit df4c3b0)
    cc #86523
    veprbl committed Jun 15, 2020
    Copy the full SHA
    10e5f1f View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/development/tools/misc/intltool/default.nix
6 changes: 4 additions & 2 deletions pkgs/development/tools/misc/intltool/default.nix
Original file line number Diff line number Diff line change
@@ -12,8 +12,10 @@ stdenv.mkDerivation rec {
# fix "unescaped left brace" errors when using intltool in some cases
patches = [(fetchpatch {
name = "perl5.26-regex-fixes.patch";
url = "https://sources.debian.org/data/main/i/intltool/0.51.0-5"
+ "/debian/patches/perl5.26-regex-fixes.patch";
url = [
"https://sources.debian.org/data/main/i/intltool/0.51.0-5/debian/patches/perl5.26-regex-fixes.patch"
"https://src.fedoraproject.org/rpms/intltool/raw/d8d2ef29fb122a42a6b6678eb1ec97ae56902af2/f/intltool-perl5.26-regex-fixes.patch"
];
sha256 = "12q2140867r5d0dysly72khi7b0mm2gd7nlm1k81iyg7fxgnyz45";
})];