Skip to content
Snippets Groups Projects
Commit 71e9c225 authored by Daniel Firth's avatar Daniel Firth
Browse files

lua: init at t2.2.1

parent 138b7f75
No related merge requests found
...@@ -322,6 +322,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -322,6 +322,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(None Text) (None Text)
, callHackage "lsp-types" "1.6.0.0" , callHackage "lsp-types" "1.6.0.0"
, callHackage "lsp" "1.6.0.0" , callHackage "lsp" "1.6.0.0"
, callHackage "lua" "2.2.1"
, callHackage "lucid-alpine" "0.1.0.7" , callHackage "lucid-alpine" "0.1.0.7"
, callHackage "lucid-aria" "0.1.0.1" , callHackage "lucid-aria" "0.1.0.1"
, callHackage "lucid-svg" "0.7.1" , callHackage "lucid-svg" "0.7.1"
......
...@@ -375,6 +375,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -375,6 +375,8 @@ final: prev: with pkgs.haskell.lib; {
lsp-types = prev.callPackage (./pkgs/lsp-types.nix) { }; lsp-types = prev.callPackage (./pkgs/lsp-types.nix) { };
lua = prev.callPackage (./pkgs/lua.nix) { };
lucid = prev.callPackage (./pkgs/lucid.nix) { }; lucid = prev.callPackage (./pkgs/lucid.nix) { };
lucid-alpine = prev.callPackage (./pkgs/lucid-alpine.nix) { }; lucid-alpine = prev.callPackage (./pkgs/lucid-alpine.nix) { };
......
{ mkDerivation, base, lib, lua5_4, tasty, tasty-hunit }:
mkDerivation {
pname = "lua";
version = "2.2.1";
sha256 = "85546fb11ee349d3182ce11bd3046e644c2964fcfc39c797c2cd1a12e588961f";
configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ];
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
librarySystemDepends = [ lua5_4 ];
testHaskellDepends = [ base tasty tasty-hunit ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://hslua.org/";
description = "Lua, an embeddable scripting language";
license = lib.licenses.mit;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment