cntr 1.5.1

A container debugging tool based on FUSE
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs ? import <nixpkgs> {}
, src ? ./.
, naersk-lib
}:
with pkgs;

naersk-lib.buildPackage rec {
  name = "cntr";
  inherit src;

  meta = with stdenv.lib; {
    description = "A container debugging tool based on FUSE";
    homepage = "https://github.com/Mic92/cntr";
    license = licenses.mit;
    maintainers = with maintainers; [ mic92 ];
    platforms = platforms.unix;
  };
 }