biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / virtualization / conmon-rs / default.nix
blob3a8c5a5593237503a89d3e77b512e79ab6023297
1 { capnproto
2 , lib
3 , fetchFromGitHub
4 , protobuf
5 , rustPlatform
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "conmon-rs";
10   version = "0.6.2";
12   src = fetchFromGitHub {
13     owner = "containers";
14     repo = pname;
15     rev = "v${version}";
16     hash = "sha256-+htd9RJGSFzzyEQSBJGIzurQDQgpJ+sJHLPe3aPH0cg=";
17   };
19   nativeBuildInputs = [ capnproto protobuf ];
20   doCheck = false;
22   cargoHash = "sha256-CcWji/qMd7eX0O3cR9/FLID17WpSfz4kEAhDgKb3jds=";
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   };