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

Commits on Sep 10, 2020

  1. perlPackages: init Catalyst::Authentication::Store::LDAP at 1.016 (an…

    …d dependencies)
    
    This is part of and effort of adding LDAP support to hydra.
    andir committed Sep 10, 2020
    Copy the full SHA
    24aedc9 View commit details

Commits on Nov 12, 2020

  1. Merge pull request #97673 from andir/add-perl-catalyst-ldap

    perlPackages: init Catalyst::Authentication::Store::LDAP at 1.016 (and dependencies)
    stigtsp authored Nov 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    eaf2a0f View commit details
Showing with 56 additions and 0 deletions.
  1. +56 −0 pkgs/top-level/perl-packages.nix
56 changes: 56 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -1758,6 +1758,21 @@ let
buildInputs = [ TestWarn ];
};

CatalystAuthenticationStoreLDAP = buildPerlPackage {
pname = "Catalyst-Authentication-Store-LDAP";
version = "1.016";
src = fetchurl {
url = "mirror://cpan/authors/id/I/IL/ILMARI/Catalyst-Authentication-Store-LDAP-1.016.tar.gz";
sha256 = "0cm399vxqqf05cjgs1j5v3sk4qc6nmws5nfhf52qvpbwc4m82mq8";
};
propagatedBuildInputs = [ NetLDAP CatalystPluginAuthentication ClassAccessorFast ];
buildInputs = [ TestMore TestMockObject TestException NetLDAPServerTest ];
meta = {
description= "Authentication from an LDAP Directory";
license = with stdenv.lib.licenses; [ artistic1 ];
};
};

CatalystComponentInstancePerContext = buildPerlPackage {
pname = "Catalyst-Component-InstancePerContext";
version = "0.001001";
@@ -14910,6 +14925,47 @@ let
};
};

NetLDAPServer = buildPerlPackage {
pname = "Net-LDAP-Server";
version = "0.43";
src = fetchurl {
url = "mirror://cpan/authors/id/A/AA/AAR/Net-LDAP-Server-0.43.tar.gz";
sha256 = "0qmh3cri3fpccmwz6bhwp78yskrb3qmalzvqn0a23hqbsfs4qv6x";
};
propagatedBuildInputs = [ NetLDAP ConvertASN1 ];
meta = {
description = "LDAP server side protocol handling";
license = with stdenv.lib.licenses; [ artistic1 ];
};
};

NetLDAPSID = buildPerlPackage {
pname = "Net-LDAP-SID";
version = "0.0001";
src = fetchurl {
url = "mirror://cpan/authors/id/K/KA/KARMAN/Net-LDAP-SID-0.001.tar.gz";
sha256 = "1mnnpkmj8kpb7qw50sm8h4sd8py37ssy2xi5hhxzr5whcx0cvhm8";
};
meta = {
description= "Active Directory Security Identifier manipulation";
license = with stdenv.lib.licenses; [ artistic2 ];
};
};

NetLDAPServerTest = buildPerlPackage {
pname = "Net-LDAP-Server-Test";
version = "0.22";
src = fetchurl {
url = "mirror://cpan/authors/id/K/KA/KARMAN/Net-LDAP-Server-Test-0.22.tar.gz";
sha256 = "13idip7jky92v4adw60jn2gcc3zf339gsdqlnc9nnvqzbxxp285i";
};
propagatedBuildInputs = [ NetLDAP NetLDAPServer TestMore DataDump NetLDAPSID ];
meta = {
description= "test Net::LDAP code";
license = with stdenv.lib.licenses; [ artistic1 ];
};
};

NetNetmask = buildPerlPackage {
pname = "Net-Netmask";
version = "1.9104";