docui: init at 1.0.3 (#60616)

This commit is contained in:
Eugene 2019-05-01 22:35:24 +03:00 committed by Wael Nasreddine
parent 38b1f6197c
commit e334a3047a
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,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;
};
}

View File

@ -177,6 +177,8 @@ in
docker-sync = callPackage ../tools/misc/docker-sync { };
docui = callPackage ../tools/misc/docui { };
dotfiles = callPackage ../applications/misc/dotfiles { };
dotnetenv = callPackage ../build-support/dotnetenv {