parent
981171662b
commit
56f8886953
2 changed files with 31 additions and 0 deletions
29
pkgs/development/interpreters/anko/default.nix
Normal file
29
pkgs/development/interpreters/anko/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -17438,6 +17438,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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue