java: More default cleanups

This commit is contained in:
William A. Kennington III 2015-01-07 11:20:46 -08:00
parent 770d5947b0
commit dd7efcbf36
3 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ in {
javaPackage = mkOption {
type = types.package;
default = pkgs.openjre;
default = pkgs.jre;
description = ''
Which Java derivation to use for running solr.
'';

View File

@ -30,7 +30,7 @@ let
javaPackage = mkOption {
type = types.package;
default = pkgs.openjre;
default = pkgs.jre;
description = ''
Which Java derivation to use for running Winstone.
'';

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, openjre, jre ? openjre}:
{ stdenv, fetchurl, jre }:
stdenv.mkDerivation rec {
name = "zxing-${version}";
version = "3.1.0";