freetts: add jdk buildInput (#18282)

This commit is contained in:
Chris Martin 2016-09-16 11:10:45 -04:00
parent 55b8430f6f
commit ceed162b1d

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, apacheAnt, unzip, sharutils, lib}: {stdenv, fetchurl, apacheAnt, unzip, sharutils, lib, jdk}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "freetts-1.2.2"; name = "freetts-1.2.2";
@ -6,7 +6,7 @@ stdenv.mkDerivation {
url = mirror://sourceforge/freetts/freetts-1.2.2-src.zip; url = mirror://sourceforge/freetts/freetts-1.2.2-src.zip;
sha256 = "0mnikqhpf4f4jdr0irmibr8yy0dnffx1i257y22iamxi7a6by2r7"; sha256 = "0mnikqhpf4f4jdr0irmibr8yy0dnffx1i257y22iamxi7a6by2r7";
}; };
buildInputs = [ apacheAnt unzip sharutils ]; buildInputs = [ apacheAnt unzip sharutils jdk ];
unpackPhase = '' unpackPhase = ''
unzip $src -x META-INF/* unzip $src -x META-INF/*
''; '';