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: cb0ac866eaf1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3e34103e8c95
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 31, 2018

  1. redis: 4.0.8 -> 4.0.9

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools.
    
    This update was made based on information from https://repology.org/metapackage/redis/versions.
    
    These checks were done:
    
    - built on NixOS
    - ran `/nix/store/li8wiv90v6f9gbsfsg6m9kppyvccmsgg-redis-4.0.9/bin/redis-server -v` and found version 4.0.9
    - ran `/nix/store/li8wiv90v6f9gbsfsg6m9kppyvccmsgg-redis-4.0.9/bin/redis-server --version` and found version 4.0.9
    - ran `/nix/store/li8wiv90v6f9gbsfsg6m9kppyvccmsgg-redis-4.0.9/bin/redis-benchmark --help` got 0 exit code
    - ran `/nix/store/li8wiv90v6f9gbsfsg6m9kppyvccmsgg-redis-4.0.9/bin/redis-cli -v` and found version 4.0.9
    - ran `/nix/store/li8wiv90v6f9gbsfsg6m9kppyvccmsgg-redis-4.0.9/bin/redis-cli --version` and found version 4.0.9
    - found 4.0.9 with grep in /nix/store/li8wiv90v6f9gbsfsg6m9kppyvccmsgg-redis-4.0.9
    - directory tree listing: https://gist.github.com/aa9a9c80a05ebbc58dac3d99c31f5258
    R. RyanTM authored and globin committed Mar 31, 2018
    Copy the full SHA
    3e34103 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/nosql/redis/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/nosql/redis/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, lua }:

stdenv.mkDerivation rec {
version = "4.0.8";
version = "4.0.9";
name = "redis-${version}";

src = fetchurl {
url = "http://download.redis.io/releases/${name}.tar.gz";
sha256 = "1b9jqacckx4qqyz905mnclxfcpsvrwc507n6zr4r4canq6w3h37z";
sha256 = "0465bv6yxnwmas3wzg07vmrprv2pxhnr56hn5pxrybwf66y76kyz";
};

buildInputs = [ lua ];