Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / virtualization / conmon-rs / default.nix
blob7599c5eb6652bba0568313a21c794c18379f5703
1 { capnproto
2 , lib
3 , fetchFromGitHub
4 , protobuf
5 , rustPlatform
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "conmon-rs";
10   version = "0.6.1";
12   src = fetchFromGitHub {
13     owner = "containers";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "sha256-B8uloch+ucOLIIR64GE5Z8ahe2NLqPmDGcugQVSqpl4=";
17   };
19   nativeBuildInputs = [ capnproto protobuf ];
20   doCheck = false;
22   cargoHash = "sha256-hEhAnNppiyY6EcdHfri534ih8VUfpT7lO9L4mFJ6Caw=";
24   meta = with lib; {
25     description = "An OCI container runtime monitor written in Rust";
26     homepage = "https://github.com/containers/conmon-rs";
27     license = licenses.asl20;
28     maintainers = with maintainers; [ ] ++ teams.podman.members;
29     platforms = platforms.linux;
30   };