summary refs log tree commit diff
path: root/pkgs/development/libraries/gss
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-06-10 21:52:47 +0000
committerLudovic Courtès <ludo@gnu.org>2010-06-10 21:52:47 +0000
commitd3c213543d9272da6658eb11e154e66080fd60fc (patch)
treeeb54d7ebcc415fc906e625cc669e67884f9ffed5 /pkgs/development/libraries/gss
parent0d3f98aa6dae335d0ed912212f98e55d6dd63420 (diff)
downloadnixpkgs-d3c213543d9272da6658eb11e154e66080fd60fc.tar
nixpkgs-d3c213543d9272da6658eb11e154e66080fd60fc.tar.gz
nixpkgs-d3c213543d9272da6658eb11e154e66080fd60fc.tar.bz2
nixpkgs-d3c213543d9272da6658eb11e154e66080fd60fc.tar.lz
nixpkgs-d3c213543d9272da6658eb11e154e66080fd60fc.tar.xz
nixpkgs-d3c213543d9272da6658eb11e154e66080fd60fc.tar.zst
nixpkgs-d3c213543d9272da6658eb11e154e66080fd60fc.zip
GNU GSS 1.0.1.
svn path=/nixpkgs/trunk/; revision=22219
Diffstat (limited to 'pkgs/development/libraries/gss')
-rw-r--r--pkgs/development/libraries/gss/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/libraries/gss/default.nix b/pkgs/development/libraries/gss/default.nix
index ca92fe30798..ded3fccca7b 100644
--- a/pkgs/development/libraries/gss/default.nix
+++ b/pkgs/development/libraries/gss/default.nix
@@ -1,21 +1,17 @@
 { fetchurl, stdenv, shishi }:
 
 stdenv.mkDerivation rec {
-  name = "gss-1.0.0";
+  name = "gss-1.0.1";
 
   src = fetchurl {
     url = "mirror://gnu/gss/${name}.tar.gz";
-    sha256 = "0rcbzg19m7bddvbhjqv1iwyydkj61czb0xr691mkj0i5p4d4bakk";
+    sha256 = "05g9p45gmd0332ly19g13rbi0wdx447imw42f22482rdr8vpy9m0";
   };
 
   buildInputs = [ shishi ];
 
   doCheck = true;
 
-  # Work around the lack of `-lshishi' for `krb5context'.  See
-  # <http://lists.gnu.org/archive/html/help-gsasl/2010-05/msg00005.html>.
-  checkPhase = "make check LDFLAGS=-lshishi";
-
   meta = {
     description = "GNU GSS Generic Security Service";