2020-03-27 07:33:21 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
2019-05-01 20:35:24 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "docui";
|
2020-03-14 04:55:32 +00:00
|
|
|
version = "2.0.4";
|
2019-05-01 20:35:24 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "skanehira";
|
|
|
|
repo = "docui";
|
|
|
|
rev = version;
|
2020-03-14 04:55:32 +00:00
|
|
|
sha256 = "0jya0wdp8scjmsr44krdbbb8q4gplf44gsng1nyn12a6ldqzayxl";
|
2019-05-01 20:35:24 +01:00
|
|
|
};
|
|
|
|
|
2020-03-14 04:55:32 +00:00
|
|
|
modSha256 = "1wyx05kk4f41mgvwnvfc9xk7vd3x96cbn5xb5ph7p443f70ydnak";
|
2019-05-01 20:35:24 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "TUI Client for Docker";
|
2020-03-14 04:55:32 +00:00
|
|
|
homepage = "https://github.com/skanehira/docui";
|
2019-05-01 20:35:24 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2019-08-18 11:36:35 +01:00
|
|
|
maintainers = with maintainers; [ aethelz ];
|
2019-05-01 20:35:24 +01:00
|
|
|
};
|
|
|
|
}
|