2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub }:
|
2018-06-22 04:41:29 -07:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 04:41:23 -07:00
|
|
|
pname = "cntr";
|
2020-12-29 21:58:57 -08:00
|
|
|
version = "1.4.1";
|
2018-06-22 04:41:29 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Mic92";
|
|
|
|
repo = "cntr";
|
|
|
|
rev = version;
|
2020-12-29 21:58:57 -08:00
|
|
|
sha256 = "sha256-4ogyOKuz6702/sOQNvE+UP+cvQrPPU3VjL4b0FUfRNw=";
|
2018-06-22 04:41:29 -07:00
|
|
|
};
|
|
|
|
|
2020-12-29 21:58:57 -08:00
|
|
|
cargoSha256 = "sha256-lblvun2T1qpFiowld77Ti2MFPzhs5pOWWRbErORXYCM=";
|
2018-06-22 04:41:29 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-06-22 04:41:29 -07:00
|
|
|
description = "A container debugging tool based on FUSE";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/Mic92/cntr";
|
2018-06-22 04:41:29 -07:00
|
|
|
license = licenses.mit;
|
2020-12-29 21:58:57 -08:00
|
|
|
platforms = platforms.linux;
|
2018-06-22 04:41:29 -07:00
|
|
|
maintainers = [ maintainers.mic92 ];
|
|
|
|
};
|
|
|
|
}
|