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

Commits on Nov 28, 2019

  1. mysql80: define pname and version

    version is needed by the mysql service module
    Close #68322
    c0bw3b authored Nov 28, 2019
    Copy the full SHA
    e7f7b47 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/servers/sql/mysql/8.0.x.nix
5 changes: 3 additions & 2 deletions pkgs/servers/sql/mysql/8.0.x.nix
Original file line number Diff line number Diff line change
@@ -5,10 +5,11 @@

let
self = stdenv.mkDerivation rec {
name = "mysql-8.0.17";
pname = "mysql";
version = "8.0.17";

src = fetchurl {
url = "https://dev.mysql.com/get/Downloads/MySQL-${self.mysqlVersion}/${name}.tar.gz";
url = "https://dev.mysql.com/get/Downloads/MySQL-${self.mysqlVersion}/${pname}-${version}.tar.gz";
sha256 = "1mjrlxn8vigi69r0r674j2dibdnkaar01ji5965gsyx7k60z7qy6";
};