summary refs log tree commit diff
path: root/pkgs/development/libraries/ti-rpc
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-01-15 16:43:51 +0100
committerPeter Simons <simons@cryp.to>2014-01-15 17:29:14 +0100
commit5ea4b3f8e78fd4ccf45e47372640f0024acb8cc5 (patch)
tree9aca159053510ec1d1772c97eb76c8d91bc71554 /pkgs/development/libraries/ti-rpc
parent9b4f9e1c40815a92ff9245cb3957a54e05a8ecb7 (diff)
downloadnixpkgs-5ea4b3f8e78fd4ccf45e47372640f0024acb8cc5.tar
nixpkgs-5ea4b3f8e78fd4ccf45e47372640f0024acb8cc5.tar.gz
nixpkgs-5ea4b3f8e78fd4ccf45e47372640f0024acb8cc5.tar.bz2
nixpkgs-5ea4b3f8e78fd4ccf45e47372640f0024acb8cc5.tar.lz
nixpkgs-5ea4b3f8e78fd4ccf45e47372640f0024acb8cc5.tar.xz
nixpkgs-5ea4b3f8e78fd4ccf45e47372640f0024acb8cc5.tar.zst
nixpkgs-5ea4b3f8e78fd4ccf45e47372640f0024acb8cc5.zip
libtirpc: update from 0.2.3 to 0.2.4, potentially fixes CVE-2013-1950
Diffstat (limited to 'pkgs/development/libraries/ti-rpc')
-rw-r--r--pkgs/development/libraries/ti-rpc/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/libraries/ti-rpc/default.nix b/pkgs/development/libraries/ti-rpc/default.nix
index b6faee6c298..9b08b8d5d90 100644
--- a/pkgs/development/libraries/ti-rpc/default.nix
+++ b/pkgs/development/libraries/ti-rpc/default.nix
@@ -1,13 +1,15 @@
-{ fetchurl, stdenv }:
+{ fetchurl, stdenv, krb5 }:
 
 stdenv.mkDerivation rec {
-  name = "libtirpc-0.2.3";
+  name = "libtirpc-0.2.4";
 
   src = fetchurl {
     url = "mirror://sourceforge/libtirpc/${name}.tar.bz2";
-    sha256 = "0g4jd8da0kfxz5lv1x5v7f3mfxw53cck8g2zz4llrjmlj42flaag";
+    sha256 = "18a337wa4amf0k21wnimp3yzs5l3cxqndz4x3x8bm993zhfy5hs5";
   };
 
+  buildInputs = [ krb5 ];
+
   # http://www.sourcemage.org/projects/grimoire/repository/revisions/d6344b6a3a94b88ed67925a474de5930803acfbf
   preConfigure = ''
     echo "" > src/des_crypt.c
@@ -36,8 +38,5 @@ stdenv.mkDerivation rec {
        already supports IPv6.  So, the FreeBSD release 5.2.1 TI-RPC has
        been ported to replace the SunRPC of the glibc.
     '';
-
-    platforms = stdenv.lib.platforms.all;
-    maintainers = [ stdenv.lib.maintainers.simons ];
   };
 }