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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
602 B
Nix
Raw Normal View History

2022-11-13 13:55:51 +00:00
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
2019-05-01 19:35:24 +00:00
buildGoModule rec {
pname = "docui";
2020-03-14 04:55:32 +00:00
version = "2.0.4";
2019-05-01 19:35:24 +00:00
src = fetchFromGitHub {
owner = "skanehira";
repo = "docui";
rev = version;
2023-09-21 14:23:40 +00:00
hash = "sha256-tHv1caNGiWC9Dc/qR4ij9xGM1lotT0KyrpJpdBsHyks=";
2019-05-01 19:35:24 +00:00
};
2023-09-21 14:23:40 +00:00
vendorHash = "sha256-5xQ5MmGpyzVh4gXZAhCY16iVw8zbCMzMA5IOsPdn7b0=";
2019-05-01 19:35:24 +00:00
meta = with lib; {
2019-05-01 19:35:24 +00:00
description = "TUI Client for Docker";
2020-03-14 04:55:32 +00:00
homepage = "https://github.com/skanehira/docui";
2019-05-01 19:35:24 +00:00
license = licenses.mit;
2019-08-18 10:36:35 +00:00
maintainers = with maintainers; [ aethelz ];
2022-11-13 13:55:51 +00:00
broken = stdenv.isDarwin;
2023-11-27 01:17:53 +00:00
mainProgram = "docui";
2019-05-01 19:35:24 +00:00
};
}