lol
0
fork

Configure Feed

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

at 23.11-beta 25 lines 559 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "hcledit"; 8 version = "0.2.10"; 9 10 src = fetchFromGitHub { 11 owner = "minamijoyo"; 12 repo = pname; 13 rev = "v${version}"; 14 hash = "sha256-rXmbRbM6U1JtV3t8C0LlLAdYpxd4UjxrbrPVHdqiCJ8="; 15 }; 16 17 vendorHash = "sha256-9ND/vDPDn3rn213Jn1UPMmYAkMI86gYx9QLcV/oFGh4="; 18 19 meta = with lib; { 20 description = "A command line editor for HCL"; 21 homepage = "https://github.com/minamijoyo/hcledit"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ aleksana ]; 24 }; 25}