nixpkgs/pkgs/tools/misc/docui/default.nix

23 lines
562 B
Nix
Raw Normal View History

2019-05-01 20:35:24 +01:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
name = "docui-${version}";
2019-08-18 08:23:19 +01:00
version = "2.0.0";
2019-05-01 20:35:24 +01:00
src = fetchFromGitHub {
owner = "skanehira";
repo = "docui";
rev = version;
2019-08-18 08:23:19 +01:00
sha256 = "0rizl4rxmb3brzvqxw5llbgvq3rncix3h60pgq50djdf0jjnn5hs";
2019-05-01 20:35:24 +01:00
};
2019-08-18 08:23:19 +01:00
modSha256 = "0asqz9nnx80g2wi7dzxrfmppcraywrwdqi9vzr66vaihwpfpfnwz";
2019-05-01 20:35:24 +01:00
meta = with stdenv.lib; {
description = "TUI Client for Docker";
homepage = https://github.com/skanehira/docui;
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
};
}