-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsmoothmq.nix
33 lines (27 loc) · 923 Bytes
/
smoothmq.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# [smoothmq](https://github.com/poundifdef/SmoothMQ) is A drop-in replacement for SQS designed for great developer experience and efficiency
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule {
pname = "smoothmq";
version = "unstable-2024-06-30";
src = fetchFromGitHub {
owner = "poundifdef";
repo = "SmoothMQ";
rev = "46f8b2266d604cf1a9793338ec7d1a1caad2dc4b";
hash = "sha256-4AnpT5BkROkR+fsfv/KYsvvA+qpgvJ9Pk3tBor0QSRQ=";
};
vendorHash = "sha256-bEVliwjw8dDiS/0/ImIDIs+fMACzcSYiFAxB1mz96lE=";
ldflags = [ "-s" "-w" ];
postInstall = ''
mv $out/bin/{q,smoothmq}
'';
meta = with lib; {
description = "A drop-in replacement for SQS designed for great developer experience and efficiency";
homepage = "https://github.com/poundifdef/SmoothMQ";
license = licenses.agpl3Only;
maintainers = with maintainers; [ jpetrucciani ];
mainProgram = "smoothmq";
};
}