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

Commits on Oct 9, 2019

  1. Copy the full SHA
    facb920 View commit details

Commits on Oct 14, 2019

  1. Merge pull request #70818 from stigtsp/package/perl-class-init

    perlPackages.CLASS: init at 1.00
    c0bw3b authored Oct 14, 2019
    Copy the full SHA
    43deb3b 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
@@ -2121,6 +2121,21 @@ let
};
};

CLASS = buildPerlPackage {
pname = "CLASS";
version = "1.00";
src = fetchurl {
url = "mirror://cpan/authors/id/M/MS/MSCHWERN/CLASS-1.00.tar.gz";
sha256 = "c5185620815701b3fec21314ccd8c5693e6bfd519431527da3370a8164220671";
};
meta = {
homepage = "https://metacpan.org/pod/CLASS";
description = "Alias for __PACKAGE__";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.sgo ];
};
};

ClassAccessor = buildPerlPackage {
pname = "Class-Accessor";
version = "0.51";