nelua: init at 2022-11-20

This commit is contained in:
Mario Rodas 2022-11-23 04:20:00 +00:00
parent edf9128c17
commit ca9f905b44
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, stdenv, fetchFromGitHub, luaPackages }:
stdenv.mkDerivation {
pname = "nelua";
version = "unstable-2022-11-20";
src = fetchFromGitHub {
owner = "edubart";
repo = "nelua-lang";
rev = "63909dc834708a5bd7c21d65a6633880f40295db";
hash = "sha256-GeknXYsdRUzihzF3qHcCgbcB3w8geiWe5O1Az+4UqMs=";
};
makeFlags = [ "PREFIX=$(out)" ];
checkInputs = [ luaPackages.luacheck ];
doCheck = true;
meta = with lib; {
description = "Minimal, efficient, statically-typed and meta-programmable systems programming language heavily inspired by Lua, which compiles to C and native code";
homepage = "https://nelua.io/";
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.marsam ];
};
}

View file

@ -15759,6 +15759,8 @@ with pkgs;
mujs = callPackage ../development/interpreters/mujs { };
nelua = callPackage ../development/interpreters/nelua { };
nextflow = callPackage ../development/interpreters/nextflow { };
ngn-k = callPackage ../development/interpreters/ngn-k { };