My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/system/mq-cli/default.nix

23 lines
658 B

{ fetchFromGitHub, lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "mq-cli";
version = "1.0.0";
src = fetchFromGitHub {
owner = "aprilabank";
repo = "mq-cli";
rev = "v${version}";
sha256 = "02z85waj5jc312biv2qhbgplsggxgjmfmyv9v8b1ky0iq1mpxjw7";
};
cargoSha256 = "19mk0hl7cr5qb3r64zi0hcsn4yqbg8c3g2f9jywm0g2c13ak36li";
meta = with lib; {
description = "CLI tool to manage POSIX message queues";
homepage = "https://github.com/aprilabank/mq-cli";
license = licenses.mit;
maintainers = with maintainers; [ tazjin ];
platforms = platforms.linux;
};
}