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

Commits on Oct 9, 2019

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6746740 View commit details

Commits on Oct 14, 2019

  1. Merge pull request #70819 from stigtsp/package/perl-convert-base32-init

    perlPackages.ConvertBase32: init at 0.06
    c0bw3b authored Oct 14, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    hawkw Eliza Weisman
    Copy the full SHA
    d318b54 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
@@ -2988,6 +2988,22 @@ let
};
};

ConvertBase32 = buildPerlPackage {
pname = "Convert-Base32";
version = "0.06";
src = fetchurl {
url = "mirror://cpan/authors/id/I/IK/IKEGAMI/Convert-Base32-0.06.tar.gz";
sha256 = "4ba82c167c41f455aa8284738727e4c94a2ebcb1c4ce797f6fda07245a642115";
};
buildInputs = [ TestException ];
meta = {
homepage = "https://metacpan.org/pod/Convert::Base32";
description = "Encoding and decoding of base32 strings";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.sgo ];
};
};

ConvertColor = buildPerlModule {
pname = "Convert-Color";
version = "0.11";