mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 17:10:27 +00:00
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
27 lines
634 B
Nix
27 lines
634 B
Nix
{ stdenv, fetchurl, lua }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "5.0.5";
|
|
pname = "redis";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.redis.io/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "0xd3ak527cnkz2cn422l2ag9nsa6mhv7y2y49zwqy7fjk6bh0f91";
|
|
};
|
|
|
|
buildInputs = [ lua ];
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = false; # needs tcl
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://redis.io;
|
|
description = "An open source, advanced key-value store";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ berdario globin ];
|
|
};
|
|
}
|