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

Commits on May 9, 2018

  1. perlPackages.LinuxACL: init at 0.05

    limeytexan authored and rycee committed May 9, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    rycee Robert Helgesson
    Copy the full SHA
    9410c39 View commit details
  2. Fix alphabetization of perl modules

    limeytexan authored and rycee committed May 9, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    rycee Robert Helgesson
    Copy the full SHA
    df37647 View commit details
Showing with 29 additions and 14 deletions.
  1. +29 −14 pkgs/top-level/perl-packages.nix
43 changes: 29 additions & 14 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -450,20 +450,6 @@ let self = _self // overrides; _self = with self; {
};
};

ListCompare = buildPerlPackage rec {
name = "List-Compare-0.53";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JK/JKEENAN/${name}.tar.gz";
sha256 = "fdbf4ff67b3135d44475fef7fcac0cd4706407d5720d26dca914860eb10f8550";
};
buildInputs = [ IOCaptureOutput ];
meta = {
homepage = http://thenceforward.net/perl/modules/List-Compare/;
description = "Compare elements of two or more lists";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

ArchiveCpio = buildPerlPackage rec {
name = "Archive-Cpio-0.10";
src = fetchurl {
@@ -8524,6 +8510,21 @@ let self = _self // overrides; _self = with self; {
doCheck = false;
};

LinuxACL = buildPerlPackage rec {
name = "Linux-ACL-0.05";
src = fetchurl {
url = "mirror://cpan/authors/id/N/NA/NAZAROV/${name}.tar.gz";
sha256 = "312940c1f60f47c4fc93fa0a9d2a626425faa837040c8c2f1ad58ee09f62f371";
};
buildInputs = [ pkgs.acl ];
NIX_CFLAGS_LINK = "-L${pkgs.acl.out}/lib -lacl";
meta = {
maintainers = [ maintainers.limeytexan ];
description = "Perl extension for reading and setting Access Control Lists for files by libacl linux library";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

LinuxDistribution = buildPerlModule {
name = "Linux-Distribution-0.23";
src = fetchurl {
@@ -8571,6 +8572,20 @@ let self = _self // overrides; _self = with self; {
};
};

ListCompare = buildPerlPackage rec {
name = "List-Compare-0.53";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JK/JKEENAN/${name}.tar.gz";
sha256 = "fdbf4ff67b3135d44475fef7fcac0cd4706407d5720d26dca914860eb10f8550";
};
buildInputs = [ IOCaptureOutput ];
meta = {
homepage = http://thenceforward.net/perl/modules/List-Compare/;
description = "Compare elements of two or more lists";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

ListMoreUtils = buildPerlPackage rec {
name = "List-MoreUtils-0.428";
src = fetchurl {