forked from mirrors/nixpkgs
mod-wsgi: update from 3.4 to 3.5, fixes CVE-2014-0240
This commit is contained in:
parent
b9f7f19820
commit
7bcd577bd1
|
@ -1,11 +1,12 @@
|
|||
{ stdenv, fetchurl, apacheHttpd, python }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "mod_wsgi-3.4";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mod_wsgi-${version}";
|
||||
version = "3.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://modwsgi.googlecode.com/files/mod_wsgi-3.4.tar.gz";
|
||||
sha256 = "1s5nnjssvcl6lzy7kxmrk47yz6sgfzk90i1y7jml0s0lks7ck1df";
|
||||
url = "https://github.com/GrahamDumpleton/mod_wsgi/archive/${version}.tar.gz";
|
||||
sha256 = "14xz422jlakdhxzsl8xs9if86yf1fnkwdg0havjyqs7my0w4qrzh";
|
||||
};
|
||||
|
||||
buildInputs = [ apacheHttpd python ];
|
||||
|
@ -17,7 +18,7 @@ stdenv.mkDerivation {
|
|||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://code.google.com/p/modwsgi/";
|
||||
homepage = http://code.google.com/p/modwsgi/;
|
||||
description = "Host Python applications in Apache through the WSGI interface";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
|
||||
|
|
Loading…
Reference in a new issue