Unverified Commit 97f71c03 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #202653 from marsam/init-nelua

nelua: init at 2022-11-20
parents 98d0421c ca9f905b
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -15796,6 +15796,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 { };