mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
Merge pull request #41653 from Anton-Latukha/hiawatha
hiawatha: GitHub -> GitLab, clean-up
This commit is contained in:
commit
636695a910
|
@ -1,50 +1,50 @@
|
|||
{ stdenv, fetchurl, cmake,
|
||||
libxslt, zlib, libxml2, openssl,
|
||||
enableSSL ? true,
|
||||
enableMonitor ? false,
|
||||
enableRproxy ? true,
|
||||
enableTomahawk ? false,
|
||||
enableXSLT ? true,
|
||||
enableToolkit ? true
|
||||
}:
|
||||
{ stdenv
|
||||
, fetchFromGitLab
|
||||
|
||||
assert enableSSL -> openssl !=null;
|
||||
, cmake
|
||||
, ninja
|
||||
|
||||
, libxslt
|
||||
, libxml2
|
||||
|
||||
, enableSSL ? true
|
||||
, enableMonitor ? false
|
||||
, enableRproxy ? true
|
||||
, enableTomahawk ? false
|
||||
, enableXSLT ? true
|
||||
, enableToolkit ? true
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "hiawatha-${version}";
|
||||
version = "10.8.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/hsleisink/hiawatha/archive/v${version}.tar.gz";
|
||||
sha256 = "1f2hlw2lp98b4dx87i7pz7h66vsy2g22b5adfrlij3kj0vfv61w8";
|
||||
src = fetchFromGitLab {
|
||||
owner = "hsleisink";
|
||||
repo = "hiawatha";
|
||||
rev = "v${version}";
|
||||
sha256 = "1428byx0xpzzwyc0j157q70sjx18dykvg6fd5vp70kj85ank0xpa";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake libxslt zlib libxml2 ] ++ stdenv.lib.optional enableSSL openssl ;
|
||||
nativeBuildInputs = [ cmake ninja ];
|
||||
buildInputs = [ libxslt libxml2 ];
|
||||
|
||||
prePatch = ''
|
||||
substituteInPlace CMakeLists.txt --replace SETUID ""
|
||||
'';
|
||||
|
||||
cmakeFlags = [
|
||||
( if enableSSL then "-DENABLE_TLS=on" else "-DENABLE_TLS=off" )
|
||||
(
|
||||
# FIXME: 2018-06-08: Uses bundled library, with external ("-DUSE_SYSTEM_MBEDTLS=on") asks:
|
||||
# ../src/tls.c:46:2: error: #error "The mbed TLS library must be compiled with MBEDTLS_THREADING_PTHREAD and MBEDTLS_THREADING_C enabled."
|
||||
if enableSSL then "-DENABLE_TLS=on" else "-DENABLE_TLS=off" )
|
||||
( if enableMonitor then "-DENABLE_MONITOR=on" else "-DENABLE_MONITOR=off" )
|
||||
( if enableRproxy then "-DENABLE_RPROXY=on" else "-DENABLE_RPROXY=off" )
|
||||
( if enableTomahawk then "-DENABLE_TOMAHAWK=on" else "-DENABLE_TOMAHAWK=off" )
|
||||
( if enableXSLT then "-DENABLE_XSLT=on" else "-DENABLE_XSLT=off" )
|
||||
( if enableToolkit then "-DENABLE_TOOLKIT=on" else "-DENABLE_TOOLKIT=off" )
|
||||
"-DWEBROOT_DIR=/var/www/hiawatha"
|
||||
"-DPID_DIR=/run"
|
||||
"-DWORK_DIR=/var/lib/hiawatha"
|
||||
"-DLOG_DIR=/var/log/hiawatha"
|
||||
];
|
||||
|
||||
# workaround because cmake tries installs stuff outside of nix store
|
||||
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
||||
postInstall = ''
|
||||
mv $out/$out/* $out
|
||||
rm -rf $out/{var,run}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An advanced and secure webserver";
|
||||
license = licenses.gpl2;
|
||||
|
|
Loading…
Reference in a new issue