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 16:55:51 +03:00
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
2019-05-01 22:35:24 +03:00
buildGoModule rec {
pname = "docui";
2020-03-14 07:55:32 +03:00
version = "2.0.4";
2019-05-01 22:35:24 +03:00
src = fetchFromGitHub {
owner = "skanehira";
repo = "docui";
rev = version;
2020-03-14 07:55:32 +03:00
sha256 = "0jya0wdp8scjmsr44krdbbb8q4gplf44gsng1nyn12a6ldqzayxl";
2019-05-01 22:35:24 +03:00
};
vendorSha256 = "1ggdczvv03lj0g6cq26vrk1rba6pk0805n85w9hkbjx9c4r3j577";
2019-05-01 22:35:24 +03:00
meta = with lib; {
2019-05-01 22:35:24 +03:00
description = "TUI Client for Docker";
2020-03-14 07:55:32 +03:00
homepage = "https://github.com/skanehira/docui";
2019-05-01 22:35:24 +03:00
license = licenses.mit;
2019-08-18 13:36:35 +03:00
maintainers = with maintainers; [ aethelz ];
2022-11-13 16:55:51 +03:00
broken = stdenv.isDarwin;
2019-05-01 22:35:24 +03:00
};
}