Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 82eb47d4489a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b54b87adfcba
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 9, 2018

  1. memcached: 1.5.11 -> 1.5.12

    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
    r-ryantm committed Nov 9, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    eadwu Edmund Wu
    Copy the full SHA
    1f6d946 View commit details
  2. Merge pull request #50050 from r-ryantm/auto-update/memcached

    memcached: 1.5.11 -> 1.5.12
    infinisil authored Nov 9, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    eadwu Edmund Wu
    Copy the full SHA
    b54b87a View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/memcached/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/memcached/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{stdenv, fetchurl, cyrus_sasl, libevent}:

stdenv.mkDerivation rec {
version = "1.5.11";
version = "1.5.12";
name = "memcached-${version}";

src = fetchurl {
url = "https://memcached.org/files/${name}.tar.gz";
sha256 = "0ajql8qs3w1lpw41vxkq2xabkxmmdk2nwg3i4lkclraq8pw92yk9";
sha256 = "0aav15f0lh8k4i62aza2bdv4s8vv65j38pz2zc4v45snd3arfby0";
};

buildInputs = [cyrus_sasl libevent];