3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #202653 from marsam/init-nelua

nelua: init at 2022-11-20
This commit is contained in:
Mario Rodas 2022-11-29 20:22:45 -05:00 committed by GitHub
commit 97f71c0311
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -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 { };