Skip to content

Commit

Permalink
memcached: 1.5.22 -> 1.6.2
Browse files Browse the repository at this point in the history
fixes remote DoS/possibly code execution, as described in
memcached/memcached#629

(cherry picked from commit 58a491a)
  • Loading branch information
ajs124 committed Mar 31, 2020
1 parent 81c29c1 commit 07dc1c7
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions pkgs/servers/memcached/default.nix
@@ -1,24 +1,14 @@
{stdenv, fetchurl, fetchpatch, cyrus_sasl, libevent}:
{stdenv, fetchurl, cyrus_sasl, libevent}:

stdenv.mkDerivation rec {
version = "1.5.22";
version = "1.6.2";
pname = "memcached";

src = fetchurl {
url = "https://memcached.org/files/${pname}-${version}.tar.gz";
sha256 = "14qzbxgz40j4yhi3lzrsdjd6kyy3zwv9c8kw11kj6njp42fpxd62";
sha256 = "12qn8m0jdvdckz53m2akrvixbrn64g5kv6r4hl5vx286qhc02wh6";
};

patches = [
# Fixes compilation error on Darwin due to redeclaration of
# htonll. The fix should appear in 1.5.23.
# https://github.com/memcached/memcached/issues/598
(fetchpatch {
url = "https://github.com/memcached/memcached/commit/95c67710aaf5cfe188d94b510faef8c66d6f5604.diff";
sha256 = "0ab5l24p4n4fpx78ilmg7jvs9nl84pdza90jbpbx3ns5n23pqbfs";
})
];

configureFlags = [
"ac_cv_c_endian=${if stdenv.hostPlatform.isBigEndian then "big" else "little"}"
];
Expand All @@ -32,7 +22,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A distributed memory object caching system";
repositories.git = https://github.com/memcached/memcached.git;
homepage = http://memcached.org/;
homepage = "http://memcached.org/";
license = licenses.bsd3;
maintainers = [ maintainers.coconnor ];
platforms = platforms.linux ++ platforms.darwin;
Expand Down

0 comments on commit 07dc1c7

Please sign in to comment.