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

Commits on Oct 9, 2019

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    stigtsp Stig
    Copy the full SHA
    4504da7 View commit details

Commits on Oct 14, 2019

  1. Merge pull request #70824 from stigtsp/package/perl-authen-oath-init

    perlPackages.AuthenOATH: init at 2.0.1
    c0bw3b authored Oct 14, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f7e558e 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
@@ -743,6 +743,23 @@ let
};
};

AuthenOATH = buildPerlPackage {
pname = "Authen-OATH";
version = "2.0.1";
src = fetchurl {
url = "mirror://cpan/authors/id/O/OA/OALDERS/Authen-OATH-2.0.1.tar.gz";
sha256 = "1a813dbdc05c3fbd9dd39dbcfd85e2cfb0ba3d0f652cf6b26ec83ab8146ddc77";
};
buildInputs = [ TestNeeds ];
propagatedBuildInputs = [ DigestHMAC Moo TypeTiny ];
meta = {
homepage = "https://github.com/oalders/authen-oath";
description = "OATH One Time Passwords";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.sgo ];
};
};

AuthenPassphrase = buildPerlModule {
pname = "Authen-Passphrase";
version = "0.008";