1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/docui/default.nix

24 lines
601 B
Nix
Raw Normal View History

2019-05-01 20:35:24 +01:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "docui";
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;
2019-08-18 11:36:35 +01:00
maintainers = with maintainers; [ aethelz ];
2019-05-01 20:35:24 +01:00
};
}