Merge pull request #97291 from risicle/ris-rm-elasticmq
elasticmq: remove in favour of elasticmq-server
This commit is contained in:
commit
f42fb61037
@ -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
|
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
|
dvb_apps = throw "dvb_apps has been removed."; # added 2020-11-03
|
||||||
dwarf_fortress = dwarf-fortress; # added 2016-01-23
|
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
|
emacsPackagesGen = emacsPackagesFor; # added 2018-08-18
|
||||||
emacsPackagesNgGen = emacsPackagesFor; # added 2018-08-18
|
emacsPackagesNgGen = emacsPackagesFor; # added 2018-08-18
|
||||||
emacsPackagesNgFor = emacsPackagesFor; # added 2019-08-07
|
emacsPackagesNgFor = emacsPackagesFor; # added 2019-08-07
|
||||||
|
@ -17676,10 +17676,6 @@ in
|
|||||||
|
|
||||||
biboumi = callPackage ../servers/xmpp/biboumi { };
|
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 {
|
elasticmq-server-bin = callPackage ../servers/elasticmq-server-bin {
|
||||||
jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
||||||
jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
||||||
|
Loading…
x
Reference in New Issue
Block a user