memcached: 1.5.6 -> 1.5.7

Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/memcached/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/mkaiblx8rmxg196cx0zav38kmask6vjy-memcached-1.5.7/bin/memcached -h` got 0 exit code
- ran `/nix/store/mkaiblx8rmxg196cx0zav38kmask6vjy-memcached-1.5.7/bin/memcached --help` got 0 exit code
- ran `/nix/store/mkaiblx8rmxg196cx0zav38kmask6vjy-memcached-1.5.7/bin/memcached -V` and found version 1.5.7
- ran `/nix/store/mkaiblx8rmxg196cx0zav38kmask6vjy-memcached-1.5.7/bin/memcached --version` and found version 1.5.7
- ran `/nix/store/mkaiblx8rmxg196cx0zav38kmask6vjy-memcached-1.5.7/bin/memcached -h` and found version 1.5.7
- ran `/nix/store/mkaiblx8rmxg196cx0zav38kmask6vjy-memcached-1.5.7/bin/memcached --help` and found version 1.5.7
- found 1.5.7 with grep in /nix/store/mkaiblx8rmxg196cx0zav38kmask6vjy-memcached-1.5.7
- directory tree listing: https://gist.github.com/affc1a31a9e5b9194408621fe24a9f04
This commit is contained in:
R. RyanTM 2018-03-31 03:03:50 -07:00
parent a7af5d4f88
commit 17035bb30c

View file

@ -1,12 +1,12 @@
{stdenv, fetchurl, cyrus_sasl, libevent}:
stdenv.mkDerivation rec {
version = "1.5.6";
version = "1.5.7";
name = "memcached-${version}";
src = fetchurl {
url = "http://memcached.org/files/${name}.tar.gz";
sha256 = "00szy9d4szaixi260dcd4846zci04y0sd47ia2lzg0bxkn2ywxcn";
sha256 = "0ijfiy1w4hk3j8hhra6kablq8kjabvcdvsl8cwd4drvszjl0ddsv";
};
buildInputs = [cyrus_sasl libevent];