mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
25 lines
602 B
Nix
25 lines
602 B
Nix
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "docui";
|
|
version = "2.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "skanehira";
|
|
repo = "docui";
|
|
rev = version;
|
|
hash = "sha256-tHv1caNGiWC9Dc/qR4ij9xGM1lotT0KyrpJpdBsHyks=";
|
|
};
|
|
|
|
vendorHash = "sha256-5xQ5MmGpyzVh4gXZAhCY16iVw8zbCMzMA5IOsPdn7b0=";
|
|
|
|
meta = with lib; {
|
|
description = "TUI Client for Docker";
|
|
homepage = "https://github.com/skanehira/docui";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ aethelz ];
|
|
broken = stdenv.isDarwin;
|
|
mainProgram = "docui";
|
|
};
|
|
}
|