nixpkgs/pkgs/servers/memcached/default.nix
Ryan Mulligan b17351ba2c memcached: 1.5.5 -> 1.5.6
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/d6hf5flqvv4cw0pfbbnx8m99gs1apsk0-memcached-1.5.6/bin/memcached -h` got 0 exit code
- ran `/nix/store/d6hf5flqvv4cw0pfbbnx8m99gs1apsk0-memcached-1.5.6/bin/memcached --help` got 0 exit code
- ran `/nix/store/d6hf5flqvv4cw0pfbbnx8m99gs1apsk0-memcached-1.5.6/bin/memcached -V` and found version 1.5.6
- ran `/nix/store/d6hf5flqvv4cw0pfbbnx8m99gs1apsk0-memcached-1.5.6/bin/memcached --version` and found version 1.5.6
- ran `/nix/store/d6hf5flqvv4cw0pfbbnx8m99gs1apsk0-memcached-1.5.6/bin/memcached -h` and found version 1.5.6
- ran `/nix/store/d6hf5flqvv4cw0pfbbnx8m99gs1apsk0-memcached-1.5.6/bin/memcached --help` and found version 1.5.6
- found 1.5.6 with grep in /nix/store/d6hf5flqvv4cw0pfbbnx8m99gs1apsk0-memcached-1.5.6
- directory tree listing: https://gist.github.com/4f05e6b4a66fc90f9ebcb02b05aead27
2018-03-16 22:45:36 -07:00

27 lines
755 B
Nix

{stdenv, fetchurl, cyrus_sasl, libevent}:
stdenv.mkDerivation rec {
version = "1.5.6";
name = "memcached-${version}";
src = fetchurl {
url = "http://memcached.org/files/${name}.tar.gz";
sha256 = "00szy9d4szaixi260dcd4846zci04y0sd47ia2lzg0bxkn2ywxcn";
};
buildInputs = [cyrus_sasl libevent];
hardeningEnable = [ "pie" ];
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-Wno-error";
meta = with stdenv.lib; {
description = "A distributed memory object caching system";
repositories.git = https://github.com/memcached/memcached.git;
homepage = http://memcached.org/;
license = licenses.bsd3;
maintainers = [ maintainers.coconnor ];
platforms = platforms.linux ++ platforms.darwin;
};
}