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

Commits on Oct 7, 2019

  1. perlPackages.MojoSQLite: init at 3.002

    Latest is 3.003, but not used as it requires perlPackages.DBDSQLite >= 1.64 and
    sqlite >= 3.29.0
    stigtsp committed Oct 7, 2019
    Copy the full SHA
    1e4eed8 View commit details

Commits on Oct 14, 2019

  1. Merge pull request #70654 from stigtsp/package/perl-mojo-sqlite-init

    perlPackages.MojoSQLite: init at 3.002
    c0bw3b authored Oct 14, 2019
    Copy the full SHA
    5334d3a View commit details
Showing with 17 additions and 0 deletions.
  1. +17 −0 pkgs/top-level/perl-packages.nix
17 changes: 17 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -11278,6 +11278,23 @@ let
};
};

MojoSQLite = buildPerlModule {
pname = "Mojo-SQLite";
version = "3.002";
src = fetchurl {
url = "mirror://cpan/authors/id/D/DB/DBOOK/Mojo-SQLite-3.002.tar.gz";
sha256 = "16dn0p14i6r4c8aspvkp7rfry3zy7kr2ffcmncj0pqygk62miinp";
};
buildInputs = [ ModuleBuildTiny ];
propagatedBuildInputs = [ DBDSQLite Mojolicious SQLAbstract URI URIdb ];
meta = {
homepage = "https://github.com/Grinnz/Mojo-SQLite";
description = "A tiny Mojolicious wrapper for SQLite";
license = stdenv.lib.licenses.artistic2;
maintainers = [ maintainers.sgo ];
};
};

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