Unverified Commit 74c5a695 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #248559 from figsoda/anko

parents 87332df3 56f88869
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "anko";
  version = "0.1.9";

  src = fetchFromGitHub {
    owner = "mattn";
    repo = "anko";
    rev = "v${version}";
    hash = "sha256-ZVNkQu5IxBx3f+FkUWc36EOEcY176wQJ2ravLPQAHAA=";
  };

  vendorHash = null;

  ldflags = [ "-s" "-w" ];

  __darwinAllowLocalNetworking = true;

  meta = with lib; {
    description = "Scriptable interpreter written in golang";
    homepage = "https://github.com/mattn/anko";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -17452,6 +17452,8 @@ with pkgs;
  angelscript = callPackage ../development/interpreters/angelscript { };
  anko = callPackage ../development/interpreters/anko { };
  babashka-unwrapped = callPackage ../development/interpreters/babashka { };
  babashka = callPackage ../development/interpreters/babashka/wrapped.nix { };