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

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

24 lines
581 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;
2020-03-14 04:55:32 +00:00
sha256 = "0jya0wdp8scjmsr44krdbbb8q4gplf44gsng1nyn12a6ldqzayxl";
2019-05-01 19:35:24 +00:00
};
vendorSha256 = "1ggdczvv03lj0g6cq26vrk1rba6pk0805n85w9hkbjx9c4r3j577";
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;
2019-05-01 19:35:24 +00:00
};
}