mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
2494471a14
Infra upgrade as part of #79975; no functional change expected.
25 lines
642 B
Nix
25 lines
642 B
Nix
{ stdenv, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cntr";
|
|
version = "1.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Mic92";
|
|
repo = "cntr";
|
|
rev = version;
|
|
sha256 = "0dhfz7aj3cqi974ybf0axchih40rzrs9m8bxhwz1hgig57aisfc0";
|
|
};
|
|
|
|
cargoSha256 = "088drkpkgq8psv5j6igxyhfvvbalzg6nd98r9z0nxkawck5i2clz";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A container debugging tool based on FUSE";
|
|
homepage = https://github.com/Mic92/cntr;
|
|
license = licenses.mit;
|
|
# aarch64 support will be fixed soon
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = [ maintainers.mic92 ];
|
|
};
|
|
}
|