1
0
Fork 0
nix-overlay/packages/luarocks-jsregexp.nix

22 lines
643 B
Nix
Raw Normal View History

2022-08-13 19:59:51 +00:00
{ system, lib, pkgs }:
pkgs.lua51Packages.buildLuarocksPackage rec {
pname = "jsregexp";
2023-02-27 10:39:51 +00:00
version = "0.0.6";
2022-08-13 19:59:51 +00:00
rockspecFilename = "./${pname}-${version}-1.rockspec";
src = pkgs.fetchFromGitHub {
owner = "kmarius";
repo = pname;
2023-02-27 10:39:51 +00:00
rev = "b096131504f5d2842fe225d40eb5a9eccca7db27";
hash = "sha256-T47r87FtrFnEw+a1CguqtPr3Wt/04M1xwLYw00K8aOQ=";
2022-08-13 19:59:51 +00:00
};
meta = with lib; {
description = "javascript (ECMA19) regular expressions for lua(snip)";
homepage = "https://github.com/kmarius/jsregexp";
license = [ licenses.mit ];
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
};
}