about summary refs log tree commit diff
path: root/pkgs/tools/misc/docui/default.nix
blob: 979b3be04933a553a962c14079cd8855376049ab (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 {
  name = "docui-${version}";
  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;
  };
}