Skip to content

Commit

Permalink
smoothmq: init
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetrucciani committed Jun 30, 2024
1 parent 1539ed2 commit b5359e7
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/styles/config/vocabularies/Code/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
(?i)sideko
(?i)signoz
(?i)slackbot
(?i)smoothmq
(?i)sql
(?i)sqlite
(?i)stackdriver
Expand Down
4 changes: 4 additions & 0 deletions pkgs/server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@ This directory contains specific servers
### [prometheus-folder-size-exporter.nix](./prometheus-folder-size-exporter.nix)

[prometheus-folder-size-exporter](https://github.com/MindFlavor/prometheus_folder_size_exporter) is a prometheus exporter for directory sizes

### [smoothmq.nix](./smoothmq.nix)

[smoothmq](https://github.com/poundifdef/SmoothMQ) is A drop-in replacement for SQS designed for great developer experience and efficiency
33 changes: 33 additions & 0 deletions pkgs/server/smoothmq.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,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";
};
}

0 comments on commit b5359e7

Please sign in to comment.