mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
elasticmq: remove in favour of elasticmq-server
the elasticmq package is very old and hasn't seen any non-automatic updates since its introduction. newer releases are packaged as elasticmq-server
This commit is contained in:
parent
641f22e6e4
commit
1e3b34fb5f
3 changed files with 1 additions and 44 deletions
|
@ -1,40 +0,0 @@
|
|||
{ lib, stdenv, fetchurl, jre, makeWrapper, which }:
|
||||
|
||||
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/
|
||||
|
||||
cp bin/run.sh $out/bin/elasticmq
|
||||
substituteInPlace $out/bin/elasticmq --replace '-DBASEDIR=$BASEDIR' '-DBASEDIR=''${ELASTICMQ_DATA_PREFIX:-.}'
|
||||
|
||||
wrapProgram $out/bin/elasticmq --prefix PATH : "${lib.makeBinPath [ which jre ]}"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/adamw/elasticmq";
|
||||
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.
|
||||
'';
|
||||
license = lib.licenses.asl20;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
|
@ -139,6 +139,7 @@ mapAliases ({
|
|||
draftsight = throw "draftsight has been removed, no longer available as freeware"; # added 2020-08-14
|
||||
dvb_apps = throw "dvb_apps has been removed."; # added 2020-11-03
|
||||
dwarf_fortress = dwarf-fortress; # added 2016-01-23
|
||||
elasticmq = throw "elasticmq has been removed in favour of elasticmq-server-bin"; # added 2021-01-17
|
||||
emacsPackagesGen = emacsPackagesFor; # added 2018-08-18
|
||||
emacsPackagesNgGen = emacsPackagesFor; # added 2018-08-18
|
||||
emacsPackagesNgFor = emacsPackagesFor; # added 2019-08-07
|
||||
|
|
|
@ -17668,10 +17668,6 @@ in
|
|||
|
||||
biboumi = callPackage ../servers/xmpp/biboumi { };
|
||||
|
||||
elasticmq = callPackage ../servers/elasticmq {
|
||||
jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
||||
};
|
||||
|
||||
elasticmq-server-bin = callPackage ../servers/elasticmq-server-bin {
|
||||
jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
||||
jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
||||
|
|
Loading…
Reference in a new issue