mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
42 lines
760 B
Nix
42 lines
760 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
apacheHttpd,
|
|
python3,
|
|
ncurses,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mod_wsgi";
|
|
version = "5.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GrahamDumpleton";
|
|
repo = "mod_wsgi";
|
|
rev = version;
|
|
hash = "sha256-FhOSU8/4QoWa73bNi/qkgKm3CeEEdboh2MgxgQxcYzE=";
|
|
};
|
|
|
|
buildInputs = [
|
|
apacheHttpd
|
|
python3
|
|
ncurses
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace configure --replace '/usr/bin/lipo' 'lipo'
|
|
'';
|
|
|
|
makeFlags = [
|
|
"LIBEXECDIR=$(out)/modules"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/GrahamDumpleton/mod_wsgi";
|
|
description = "Host Python applications in Apache through the WSGI interface";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|