mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
24 lines
596 B
Nix
24 lines
596 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "docui";
|
|
version = "2.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "skanehira";
|
|
repo = "docui";
|
|
rev = version;
|
|
sha256 = "0jya0wdp8scjmsr44krdbbb8q4gplf44gsng1nyn12a6ldqzayxl";
|
|
};
|
|
|
|
vendorSha256 = "1ggdczvv03lj0g6cq26vrk1rba6pk0805n85w9hkbjx9c4r3j577";
|
|
|
|
meta = with lib; {
|
|
description = "TUI Client for Docker";
|
|
homepage = "https://github.com/skanehira/docui";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ aethelz ];
|
|
};
|
|
}
|