biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / gomacro / default.nix
blob1b2a45da7a420996dff7ebe69b923d3b02b4004b
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gomacro";
5   version = "2.7-unstable-2024-01-07";
7   src = fetchFromGitHub {
8     owner = "cosmos72";
9     repo = "gomacro";
10     rev = "bf232d031933810d4a5382e17ce6c4b042a24304";
11     hash = "sha256-16u3eByFmnY12M2CEhSJKLIT0KP9nbvTv+BnqWwNTcg=";
12   };
14   vendorHash = "sha256-ok71QlBHGasGVt+CGwGqhgmx5JLkQcdlU/KX+W1A5Ws=";
16   subPackages = [ "." ];
18   meta = with lib; {
19     description = "Interactive Go interpreter and debugger with generics and macros";
20     mainProgram = "gomacro";
21     homepage = "https://github.com/cosmos72/gomacro";
22     license = licenses.mpl20;
23     maintainers = with maintainers; [ shofius ];
24   };