about summary refs log tree commit diff
path: root/pkgs/tools/misc/docui/default.nix
blob: 74ce8c102c6788ed6049c6a124bd0d5afa5bd6ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "docui";
  version = "1.0.3";

  src = fetchFromGitHub {
    owner = "skanehira";
    repo = "docui";
    rev = version;
    sha256 = "1kbap36hccwlj273is98cvgf5z5cl2c3s6p46nh6bnykz3zqzs71";
  };

  modSha256 = "1qma9bnd4k594cr5dcv74xns53mhfyl4jsm01chf85dxywjjd9vd";

  meta = with stdenv.lib; {
    description = "TUI Client for Docker";
    homepage = https://github.com/skanehira/docui;
    license = licenses.mit;
    platforms = platforms.linux ++ platforms.darwin;
  };
}