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

Commits on Oct 9, 2019

  1. Copy the full SHA
    f075d2e View commit details

Commits on Oct 14, 2019

  1. Merge pull request #70822 from stigtsp/package/perl-mojo-jwt-init

    perlPackages.MojoJWT: init at 0.08
    c0bw3b authored Oct 14, 2019
    Copy the full SHA
    b49dd0e 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
@@ -11292,6 +11292,23 @@ let
};
};

MojoJWT = buildPerlModule {
pname = "Mojo-JWT";
version = "0.08";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JB/JBERGER/Mojo-JWT-0.08.tar.gz";
sha256 = "c910229e1182266b6666a2d65deea381a04e48d3aa788c42461b3184006934de";
};
buildInputs = [ ModuleBuildTiny ];
propagatedBuildInputs = [ Mojolicious ];
meta = {
homepage = "https://github.com/jberger/Mojo-JWT";
description = "JSON Web Token the Mojo way";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.sgo ];
};
};

MonitoringPlugin = buildPerlPackage {
pname = "Monitoring-Plugin";
version = "0.40";