3
0
Fork 0
forked from mirrors/nixpkgs

mongodb: update from 2.4.5 to 2.4.8, potentially fixes CVE-2013-2132

This commit is contained in:
Nixpkgs Monitor 2013-12-04 05:30:48 +02:00 committed by Evgeny Egorochkin
parent a830c0eb9d
commit 03b15f9409

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, scons, boost, v8, gperftools, pcre, snappy }:
let version = "2.4.5"; in stdenv.mkDerivation rec {
let version = "2.4.8"; in stdenv.mkDerivation rec {
name = "mongodb-${version}";
src = fetchurl {
url = "http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz";
sha256 = "01c7lb3jdr51gy7459vg5rg002xxg0mj79vlhy54n50kr31cnxmm";
sha256 = "1p6gnharypglfp39halp72fig96fqjhakyy7m76a1prxwpjkqw7x";
};
nativeBuildInputs = [ scons boost v8 gperftools pcre snappy ];