munin: use jre8

Fixes #296276
This commit is contained in:
lunik1 2024-03-22 22:54:29 +00:00 committed by Bjørn Forsman
parent 7fddf12bad
commit 79863957ca

View File

@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, makeWrapper, which, coreutils, rrdtool, perlPackages { lib, stdenv, fetchFromGitHub, makeWrapper, which, coreutils, rrdtool, perlPackages
, python3, ruby, jre, nettools, bc , python3, ruby, jre8, nettools, bc
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
perlPackages.DBDPg perlPackages.DBDPg
python3 python3
ruby ruby
jre jre8
# tests # tests
perlPackages.TestLongString perlPackages.TestLongString
perlPackages.TestDifferences perlPackages.TestDifferences
@ -106,7 +106,7 @@ stdenv.mkDerivation rec {
"PERL=${perlPackages.perl.outPath}/bin/perl" "PERL=${perlPackages.perl.outPath}/bin/perl"
"PYTHON=${python3.interpreter}" "PYTHON=${python3.interpreter}"
"RUBY=${ruby.outPath}/bin/ruby" "RUBY=${ruby.outPath}/bin/ruby"
"JAVARUN=${jre.outPath}/bin/java" "JAVARUN=${jre8.outPath}/bin/java"
"PLUGINUSER=munin" "PLUGINUSER=munin"
]; ];