mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Added an expression for mod_wsgi-3.3, to be used with Apache 2.
svn path=/nixpkgs/trunk/; revision=24408
This commit is contained in:
parent
b6693acfb2
commit
7b630f442c
2 changed files with 24 additions and 0 deletions
22
pkgs/servers/http/apache-modules/mod_wsgi/default.nix
Normal file
22
pkgs/servers/http/apache-modules/mod_wsgi/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchurl, apacheHttpd, python }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "mod_wsgi-3.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://modwsgi.googlecode.com/files/mod_wsgi-3.3.tar.gz";
|
||||
sha256 = "0hrjksym0dlqn1ka1yf3x6ar801zqxfykwcxazjwz104k5w10vnr";
|
||||
};
|
||||
|
||||
buildInputs = [ apacheHttpd python ];
|
||||
|
||||
patchPhase = ''
|
||||
sed -r -i "s|^LIBEXECDIR=.*$|LIBEXECDIR=$out/modules|" configure
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://code.google.com/p/modwsgi/";
|
||||
description = "Host Python applications in Apache through the WSGI interface";
|
||||
license = "ASL2.0";
|
||||
};
|
||||
}
|
|
@ -4191,6 +4191,8 @@ let
|
|||
|
||||
mod_fastcgi = callPackage ../servers/http/apache-modules/mod_fastcgi { };
|
||||
|
||||
mod_wsgi = callPackage ../servers/http/apache-modules/mod_wsgi { };
|
||||
|
||||
mpd = callPackage ../servers/mpd { };
|
||||
|
||||
myserver = callPackage ../servers/http/myserver { };
|
||||
|
|
Loading…
Reference in a new issue