Skip to content

Commit

Permalink
perlPackages.GSSAPI: depend on krb5Full, fix misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
limeytexan committed Mar 22, 2018
1 parent 3c6dcdb commit 0d6fdac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6350,19 +6350,19 @@ let self = _self // overrides; _self = with self; {
};

GSSAPI = buildPerlPackage rec {
name = "GSSAPPI-0.28";
name = "GSSAPI-0.28";
src = fetchurl {
url = "http://search.cpan.org/CPAN/authors/id/A/AG/AGROLMS/GSSAPI-0.28.tar.gz";
url = "mirror://cpan/authors/id/A/AG/AGROLMS/${name}.tar.gz";
sha256 = "1mkhwxjjlhr58pd770i9gnf7zy7jj092iv6jfbnb8bvnc5xjr3vx";
};
buildInputs = [ TestPod ];
propagatedBuildInputs = [ pkgs.heimdalFull ];
propagatedBuildInputs = [ pkgs.krb5Full.dev ];
meta = {
maintainers = [ maintainers.limeytexan ];
description = "Perl extension providing access to the GSSAPIv2 library";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
makeMakerFlags = "--gssapiimpl ${pkgs.heimdalFull.out}";
makeMakerFlags = "--gssapiimpl ${pkgs.krb5Full.dev}";
};

Gtk2 = buildPerlPackage rec {
Expand Down

0 comments on commit 0d6fdac

Please sign in to comment.