apacheHttpdPackages.mod_jk: reformat with nixfmt-rfc-style
This commit is contained in:
parent
dd663dbf62
commit
51b2714417
@ -1,4 +1,11 @@
|
||||
{ lib, stdenv, autoreconfHook, fetchFromGitHub, apacheHttpd, jdk }:
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
apacheHttpd,
|
||||
autoreconfHook,
|
||||
fetchFromGitHub,
|
||||
jdk,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mod_jk";
|
||||
@ -11,19 +18,20 @@ stdenv.mkDerivation rec {
|
||||
hash = "sha256-hlwlx7Sb4oeZIzHQYOC3e9xEZK9u6ZG8Q2U/XdKMe3U=";
|
||||
};
|
||||
|
||||
sourceRoot = "${src.name}/native";
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
buildInputs = [ apacheHttpd jdk ];
|
||||
buildInputs = [
|
||||
apacheHttpd
|
||||
jdk
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--with-apxs=${apacheHttpd.dev}/bin/apxs"
|
||||
"--with-java-home=${jdk}"
|
||||
];
|
||||
|
||||
setSourceRoot = ''
|
||||
sourceRoot=$(echo */native)
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user