nixpkgs/pkgs/applications/virtualization/cntr/default.nix

24 lines
588 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub }:
2018-06-22 11:41:29 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "cntr";
2021-03-02 20:20:38 +00:00
version = "1.5.0";
2018-06-22 11:41:29 +00:00
src = fetchFromGitHub {
owner = "Mic92";
repo = "cntr";
rev = version;
2021-03-02 20:20:38 +00:00
sha256 = "sha256-RwpRlcShvZVBR22xkJz50p10SEULXM9/gqVGNXiSM3M=";
2018-06-22 11:41:29 +00:00
};
2021-03-02 20:20:38 +00:00
cargoSha256 = "sha256-ezxIDaU270V5oqm1m8mt9QXu/SsrKomaxM2TnH+bSUY=";
2018-06-22 11:41:29 +00:00
meta = with lib; {
2018-06-22 11:41:29 +00:00
description = "A container debugging tool based on FUSE";
homepage = "https://github.com/Mic92/cntr";
2018-06-22 11:41:29 +00:00
license = licenses.mit;
2020-12-30 05:58:57 +00:00
platforms = platforms.linux;
2018-06-22 11:41:29 +00:00
maintainers = [ maintainers.mic92 ];
};
}