activemq: Copy everything from the dist to the store

This commit is contained in:
Rickard Nilsson 2013-02-25 16:47:19 +01:00
parent 8f1c029e33
commit d1e614ad73

View File

@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
installPhase = '' installPhase = ''
ensureDir $out ensureDir $out
mv LICENSE lib $out/ mv * $out/
for j in `find $out/lib -name "*.jar"`; do for j in `find $out/lib -name "*.jar"`; do
cp="''${cp:+"$cp:"}$j"; cp="''${cp:+"$cp:"}$j";
done done
@ -24,8 +24,6 @@ stdenv.mkDerivation rec {
homepage = http://activemq.apache.org/; homepage = http://activemq.apache.org/;
description = '' description = ''
Messaging and Integration Patterns server written in Java. Messaging and Integration Patterns server written in Java.
This nixpkg supplies the jar-files packaged in activemq's
binary distribution.
''; '';
license = stdenv.lib.licenses.asl20; license = stdenv.lib.licenses.asl20;
}; };