Skip to content

Commit

Permalink
cntr: init at 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Oct 25, 2018
1 parent 9a7bca2 commit 84e915a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/applications/virtualization/cntr/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ stdenv, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
name = "cntr-${version}";
version = "1.2.0";

src = fetchFromGitHub {
owner = "Mic92";
repo = "cntr";
rev = version;
sha256 = "0lmbsnjia44h4rskqkv9yc7xb6f3qjgbg8kcr9zqnr7ivr5fjcxg";
};

cargoSha256 = "0gainr5gfy0bbhr6078zvgx0kzp53slxjp37d3da091ikgzgfn51";

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15994,6 +15994,8 @@ with pkgs;
cni = callPackage ../applications/networking/cluster/cni {};
cni-plugins = callPackage ../applications/networking/cluster/cni/plugins.nix {};

cntr = callPackage ../applications/virtualization/cntr { };

communi = libsForQt5.callPackage ../applications/networking/irc/communi { };

confclerk = callPackage ../applications/misc/confclerk { };
Expand Down

0 comments on commit 84e915a

Please sign in to comment.