commit
dbd856d724
@ -33,12 +33,19 @@ has the following highlights: </para>
|
|||||||
following incompatible changes:</para>
|
following incompatible changes:</para>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>Shell aliases for systemd sub-commands
|
<para>Shell aliases for systemd sub-commands
|
||||||
<link xlink:href="https://github.com/NixOS/nixpkgs/pull/15598">were dropped</link>:
|
<link xlink:href="https://github.com/NixOS/nixpkgs/pull/15598">were dropped</link>:
|
||||||
<command>start</command>, <command>stop</command>,
|
<command>start</command>, <command>stop</command>,
|
||||||
<command>restart</command>, <command>status</command>.</para>
|
<command>restart</command>, <command>status</command>.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>Redis now binds to 127.0.0.1 only instead of listening to all network interfaces. This is the default
|
||||||
|
behavior of Redis 3.2</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
{ stdenv, fetchurl, lua }:
|
{ stdenv, fetchurl, lua }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "3.0.7";
|
version = "3.2.2";
|
||||||
name = "redis-${version}";
|
name = "redis-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.redis.io/releases/${name}.tar.gz";
|
url = "http://download.redis.io/releases/${name}.tar.gz";
|
||||||
sha256 = "08vzfdr67gp3lvk770qpax2c5g2sx8hn6p64jn3jddrvxb2939xj";
|
sha256 = "05cf63502b2248b5d39588962100bfa4fcb47dabd56931a8cb60b301b1d8daea";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ lua ];
|
buildInputs = [ lua ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user