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

Commits on Jul 3, 2017

  1. Mariadb: Fix URL for source tarball.

    mariadb.org appears to have changed their URL schemes, and the tarball URL used
    by this derivation no longer works, which makes this unbuildable from scratch.
    
    This change updates that URL to a mariadb.org location that will still serve
    this tarball.
    
    Hash is unchanged.
    sh01 committed Jul 3, 2017
    Copy the full SHA
    cb9fe8c View commit details
  2. Merge #27076: mariadb: fix URL for source tarball

    Not even all their mirrors serve our version, unfortunately.
    vcunat committed Jul 3, 2017
    Copy the full SHA
    cc83f35 View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 pkgs/servers/sql/mariadb/default.nix
3 changes: 2 additions & 1 deletion pkgs/servers/sql/mariadb/default.nix
Original file line number Diff line number Diff line change
@@ -18,8 +18,9 @@ common = rec { # attributes common to both builds
version = "10.1.21";

src = fetchurl {
url = "https://downloads.mariadb.org/interstitial/mariadb-${version}/source/mariadb-${version}.tar.gz";
url = "https://downloads.mariadb.org/f/mariadb-${version}/source/mariadb-${version}.tar.gz/from/http%3A//ftp.hosteurope.de/mirror/archive.mariadb.org/?serve";
sha256 = "144lcm5awcf0k6a7saqfr4p2kg8r5wbdhdm4cmn2m8hyg1an70as";
name = "mariadb-${version}.tar.gz";
};

prePatch = ''