lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 23 lines 581 B view raw
1{ lib, stdenv, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "docui"; 5 version = "2.0.4"; 6 7 src = fetchFromGitHub { 8 owner = "skanehira"; 9 repo = "docui"; 10 rev = version; 11 sha256 = "0jya0wdp8scjmsr44krdbbb8q4gplf44gsng1nyn12a6ldqzayxl"; 12 }; 13 14 vendorSha256 = "1ggdczvv03lj0g6cq26vrk1rba6pk0805n85w9hkbjx9c4r3j577"; 15 16 meta = with lib; { 17 description = "TUI Client for Docker"; 18 homepage = "https://github.com/skanehira/docui"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ aethelz ]; 21 broken = stdenv.isDarwin; 22 }; 23}