nixpkgs/pkgs/servers/elasticmq/default.nix

41 lines
1.3 KiB
Nix
Raw Normal View History

2021-01-15 07:07:56 +00:00
{ lib, stdenv, fetchurl, jre, makeWrapper, which }:
2012-07-09 19:26:07 +00:00
stdenv.mkDerivation rec {
name = "elasticmq-0.5";
src = fetchurl {
url = "https://github.com/downloads/adamw/elasticmq/${name}.tar.gz";
sha256 = "1zpv3vzairprh4x9fia82qqr14kf5hpxq1r90mn4ww7ighbv9pf1";
};
buildInputs = [ makeWrapper ];
installPhase =
''
mkdir -p $out/bin
cp -prd lib conf $out/
2021-01-15 07:07:56 +00:00
2012-07-09 19:26:07 +00:00
cp bin/run.sh $out/bin/elasticmq
substituteInPlace $out/bin/elasticmq --replace '-DBASEDIR=$BASEDIR' '-DBASEDIR=''${ELASTICMQ_DATA_PREFIX:-.}'
2021-01-15 07:07:56 +00:00
wrapProgram $out/bin/elasticmq --prefix PATH : "${lib.makeBinPath [ which jre ]}"
2012-07-09 19:26:07 +00:00
'';
meta = {
homepage = "https://github.com/adamw/elasticmq";
2012-07-09 19:26:07 +00:00
description = "Message queueing system with Java, Scala and Amazon SQS-compatible interfaces";
longDescription =
''
ElasticMQ is a message queueing system with Java, Scala and
Amazon SQS-compatible interfaces. You should set the
environment ELASTICMQ_DATA_PREFIX to a writable directory
where ElasticMQ will store its data and log files. It also
looks for its configuration file in
$ELASTICMQ_DATA_PREFIX/conf/Default.scala. You can use the
Default.scala included in the distribution as a template.
'';
2021-01-15 07:07:56 +00:00
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
2012-07-09 19:26:07 +00:00
};
}