My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/gomacro/default.nix

24 lines
703 B

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gomacro";
rev = "b4c3ab9b218fd12f22759354f4f3e37635828d1f";
version = "20210131-${lib.strings.substring 0 7 rev}";
src = fetchFromGitHub {
owner = "cosmos72";
repo = "gomacro";
sha256 = "0ci486zqrhzvs3njn2ygaxsgjx3fn8bbj2q3sd80xvjiyjvq866g";
inherit rev;
};
vendorSha256 = "1ib4h57drikyy5aq4ms6vc1p29djlpjrh7xd3bgyykr9zmm2w1kx";
subPackages = [ "." ];
meta = with lib; {
description = "Interactive Go interpreter and debugger with generics and macros";
homepage = "https://github.com/cosmos72/gomacro";
license = licenses.mpl20;
maintainers = with maintainers; [ shofius ];
};
}