mod_fastcgi: update to version 2.4.7.1
This commit is contained in:
parent
2c75686985
commit
0356c1b87d
@ -1,20 +1,23 @@
|
||||
{ stdenv, fetchurl, apacheHttpd }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mod_fastcgi-2.4.6";
|
||||
let
|
||||
version = "2.4.7.1";
|
||||
|
||||
apache-24-patch = fetchurl {
|
||||
name = "compile-against-apache24.diff";
|
||||
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/compile-against-apache24.diff?h=packages/mod_fastcgi&id=81c7cb99d15682df3bdb1edcaeea5259e9e43a42";
|
||||
sha256 = "000qvrf5jb979i37rimrdivcgjijcffgrpkx38c0rn62z9jz61g4";
|
||||
};
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "mod_fastcgi-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.fastcgi.com/dist/${name}.tar.gz";
|
||||
url = "https://github.com/FastCGI-Archives/mod_fastcgi/archive/${version}.tar.gz";
|
||||
sha256 = "12g6vcfl9jl8rqf8lzrkdxg2ngca310d3d6an563xqcgrkp8ga55";
|
||||
};
|
||||
|
||||
patches =
|
||||
[ (fetchurl {
|
||||
name = "compile-against-apache24.diff";
|
||||
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/compile-against-apache24.diff?h=packages/mod_fastcgi&id=81c7cb99d15682df3bdb1edcaeea5259e9e43a42";
|
||||
sha256 = "000qvrf5jb979i37rimrdivcgjijcffgrpkx38c0rn62z9jz61g4";
|
||||
})
|
||||
];
|
||||
patches = [ apache-24-patch ];
|
||||
|
||||
buildInputs = [ apacheHttpd ];
|
||||
|
||||
@ -24,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://www.fastcgi.com/;
|
||||
homepage = https://github.com/FastCGI-Archives/mod_fastcgi;
|
||||
description = "Provide support for the FastCGI protocol";
|
||||
|
||||
longDescription = ''
|
||||
|
Loading…
Reference in New Issue
Block a user