3
0
Fork 0
forked from mirrors/nixpkgs

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 = ''
ensureDir $out
mv LICENSE lib $out/
mv * $out/
for j in `find $out/lib -name "*.jar"`; do
cp="''${cp:+"$cp:"}$j";
done
@ -24,8 +24,6 @@ stdenv.mkDerivation rec {
homepage = http://activemq.apache.org/;
description = ''
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;
};