aws_mturk_clt: remove (#481477)
This commit is contained in:
@@ -1,52 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
jre,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "aws-mturk-clt";
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://mturk.s3.amazonaws.com/CLTSource/aws-mturk-clt-${version}.tar.gz";
|
||||
sha256 = "00yyc7k3iygg83cknv9i2dsaxwpwzdkc8a2l9j56lg999hw3mqm3";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
cp -prvd bin $out/
|
||||
|
||||
for i in $out/bin/*.sh; do
|
||||
sed -i "$i" -e "s|^MTURK_CMD_HOME=.*|MTURK_CMD_HOME=$out\nexport JAVA_HOME=${jre}|"
|
||||
done
|
||||
|
||||
mkdir -p $out/lib
|
||||
cp -prvd lib/* $out/lib/
|
||||
''; # */
|
||||
|
||||
meta = {
|
||||
homepage = "https://requester.mturk.com/developer";
|
||||
description = "Command line tools for interacting with the Amazon Mechanical Turk";
|
||||
license = lib.licenses.amazonsl;
|
||||
|
||||
longDescription = ''
|
||||
The Amazon Mechanical Turk is a crowdsourcing marketplace that
|
||||
allows users (“requesters”) to submit tasks to be performed by
|
||||
other humans (“workers”) for a small fee. This package
|
||||
contains command-line tools for submitting tasks, querying
|
||||
results, and so on.
|
||||
|
||||
The command-line tools expect a file
|
||||
<filename>mturk.properties<filename> in the current directory,
|
||||
which should contain the following:
|
||||
|
||||
<screen>
|
||||
access_key=[insert your access key here]
|
||||
secret_key=[insert your secret key here]
|
||||
service_url=http://mechanicalturk.amazonaws.com/?Service=AWSMechanicalTurkRequester
|
||||
</screen>
|
||||
'';
|
||||
};
|
||||
}
|
||||
@@ -338,6 +338,7 @@ mapAliases {
|
||||
avr-sim = throw "'avr-sim' has been removed as it was broken and unmaintained. Possible alternatives are 'simavr', SimulAVR and AVRStudio."; # Added 2025-05-31
|
||||
awesome-4-0 = throw "'awesome-4-0' has been renamed to/replaced by 'awesome'"; # Converted to throw 2025-10-27
|
||||
awf = throw "'awf' has been removed as the upstream project was archived in 2021"; # Added 2025-10-03
|
||||
aws_mturk_clt = throw "'aws_mturk_clt' has been removed due to being unmaintained upstream. Use 'awscli' with 'mturk' subcommands instead."; # Added 2026-01-19
|
||||
axmldec = throw "'axmldec' has been removed as it was broken and unmaintained for 8 years"; # Added 2025-05-17
|
||||
backlight-auto = throw "'backlight-auto' has been removed as it relies on Zig 0.12 which has been dropped."; # Added 2025-08-22
|
||||
badtouch = throw "'badtouch' has been renamed to/replaced by 'authoscope'"; # Converted to throw 2025-10-27
|
||||
|
||||
Reference in New Issue
Block a user