Merge pull request #37376 from tazjin/feat/init-mq-cli

mq-cli: init at 1.0.0
This commit is contained in:
Sarah Brofeldt 2018-03-19 19:37:40 +01:00 committed by GitHub
commit 7112a393fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ fetchFromGitHub, lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
name = "mq-cli-${version}";
version = "1.0.0";
src = fetchFromGitHub {
owner = "aprilabank";
repo = "mq-cli";
rev = "v${version}";
sha256 = "02z85waj5jc312biv2qhbgplsggxgjmfmyv9v8b1ky0iq1mpxjw7";
};
cargoSha256 = "0kpv52474bp3k2wmz8xykca8iz46dwnjmly2nivblnaap49w2zsz";
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;
repositories.git = git://github.com/aprilabank/mq-cli.git;
};
}

View File

@ -1316,6 +1316,8 @@ with pkgs;
mpdris2 = callPackage ../tools/audio/mpdris2 { };
mq-cli = callPackage ../tools/system/mq-cli { };
nfdump = callPackage ../tools/networking/nfdump { };
noteshrink = callPackage ../tools/misc/noteshrink { };