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

Commits on Oct 14, 2019

  1. Copy the full SHA
    f32701d View commit details
  2. Merge pull request #70331 from stigtsp/package/perl-mojo-mysql-init

    perlPackages.Mojomysql: init at 1.17
    c0bw3b authored Oct 14, 2019
    Copy the full SHA
    b50ee2f View commit details
Showing with 16 additions and 0 deletions.
  1. +16 −0 pkgs/top-level/perl-packages.nix
16 changes: 16 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -11477,6 +11477,22 @@ let
};
};

Mojomysql = buildPerlPackage rec {
pname = "Mojo-mysql";
version = "1.17";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JH/JHTHORSEN/Mojo-mysql-1.17.tar.gz";
sha256 = "93cd964760918a43124c3dc65d513372b6d1d00993427894e2f11a1f96662554";
};
propagatedBuildInputs = [ DBDmysql Mojolicious SQLAbstract ];
meta = {
homepage = "https://github.com/jhthorsen/mojo-mysql";
description = "Mojolicious and Async MySQL/MariaDB";
license = stdenv.lib.licenses.artistic2;
maintainers = [ maintainers.sgo ];
};
};

MojoIOLoopForkCall = buildPerlModule {
pname = "Mojo-IOLoop-ForkCall";
version = "0.20";