mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
conmon-rs: init at 0.4.0
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
This commit is contained in:
parent
b72426f7fe
commit
b73781c989
31
pkgs/applications/virtualization/conmon-rs/default.nix
Normal file
31
pkgs/applications/virtualization/conmon-rs/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ capnproto
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, protobuf
|
||||
, rustPlatform
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "conmon-rs";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "containers";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-VwVJWf9tKZ5rVF8tXDf35zsS2PipqC8FPbXUpOzsw/Y=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ capnproto protobuf ];
|
||||
doCheck = false;
|
||||
|
||||
cargoSha256 = "sha256-zY9fsZK1C3HnCxeNA5dCbQQHYx3IVDMHCHYwFh5ev2k=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "An OCI container runtime monitor written in Rust";
|
||||
homepage = "https://github.com/containers/conmon-rs";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ ] ++ teams.podman.members;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -33701,6 +33701,8 @@ with pkgs;
|
||||
|
||||
conmon = callPackage ../applications/virtualization/conmon { };
|
||||
|
||||
conmon-rs = callPackage ../applications/virtualization/conmon-rs { };
|
||||
|
||||
digikam = libsForQt5.callPackage ../applications/graphics/digikam {};
|
||||
|
||||
drumkv1 = libsForQt5.callPackage ../applications/audio/drumkv1 { };
|
||||
|
Loading…
Reference in New Issue
Block a user