1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 11:02:05 +00:00
svn path=/nixpkgs/trunk/; revision=22170
This commit is contained in:
Rob Vermaas 2010-06-07 14:24:57 +00:00
parent 94356324f5
commit 7a4356b7e9

View file

@ -39,8 +39,8 @@ stdenv.mkDerivation (
'' else stdenv.lib.concatMapStrings (j: ''
cp -v ${j} $out/lib/java
'') jars }
for j in $out/lib/java ; do
echo file jar $out/lib/java/$j >> $out/nix-support/hydra-build-products
for j in $out/lib/java/*.jar ; do
echo file jar $j >> $out/nix-support/hydra-build-products
done
'';