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

25 lines
644 B
Nix
Raw Normal View History

2018-06-22 12:41:29 +01:00
{ stdenv, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
2019-08-31 12:41:23 +01:00
pname = "cntr";
2019-11-27 10:11:00 +00:00
version = "1.2.1";
2018-06-22 12:41:29 +01:00
src = fetchFromGitHub {
owner = "Mic92";
repo = "cntr";
rev = version;
2019-11-27 10:11:00 +00:00
sha256 = "0dhfz7aj3cqi974ybf0axchih40rzrs9m8bxhwz1hgig57aisfc0";
2018-06-22 12:41:29 +01:00
};
cargoSha256 = "088drkpkgq8psv5j6igxyhfvvbalzg6nd98r9z0nxkawck5i2clz";
2018-06-22 12:41:29 +01:00
meta = with stdenv.lib; {
description = "A container debugging tool based on FUSE";
homepage = "https://github.com/Mic92/cntr";
2018-06-22 12:41:29 +01:00
license = licenses.mit;
# aarch64 support will be fixed soon
platforms = [ "x86_64-linux" ];
maintainers = [ maintainers.mic92 ];
};
}