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

Commits on Oct 3, 2019

  1. Unverified

    The committer email address is not verified.
    Copy the full SHA
    ca47ada View commit details

Commits on Oct 14, 2019

  1. Merge pull request #70328 from stigtsp/package/perl-session-token-init

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

SessionToken = buildPerlPackage rec {
pname = "Session-Token";
version = "1.503";
src = fetchurl {
url = "mirror://cpan/authors/id/F/FR/FRACTAL/Session-Token-1.503.tar.gz";
sha256 = "32c3df96ef455c71870363acd950ddc4fbc848c594f4bc55b21b44cf979f79a1";
};
meta = {
homepage = "https://github.com/hoytech/Session-Token";
description = "Secure, efficient, simple random session token generation";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.sgo ];
};
};

SetInfinite = buildPerlPackage {
pname = "Set-Infinite";
version = "0.65";