Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 13958f4a365a
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ef716bb5cf0c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 22, 2018

  1. perlPackages.GSSAPI: depend on krb5Full, fix misspelling

    (cherry picked from commit 0d6fdac)
    limeytexan authored and Mic92 committed Mar 22, 2018
    Copy the full SHA
    ef716bb View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/top-level/perl-packages.nix
8 changes: 4 additions & 4 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -6293,19 +6293,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 {