blob: d226c2fc8f00be1c39c1934295004d9ce273de2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ 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";
};
}
|