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

hslua: init at 2.2.1

parent 28276f8d
Branches
Tags
No related merge requests found
...@@ -268,6 +268,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -268,6 +268,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "918df757ce5c9244232c1e3a1e05e9d9e3ab4f09") (Some "918df757ce5c9244232c1e3a1e05e9d9e3ab4f09")
(None Text) (None Text)
, callHackage "hslua-aeson" "2.2.1" , callHackage "hslua-aeson" "2.2.1"
, callHackage "hslua" "2.2.1"
, callHackage "hspec" "2.10.3" , callHackage "hspec" "2.10.3"
, callHackage "hspec-contrib" "0.5.1.1" , callHackage "hspec-contrib" "0.5.1.1"
, callHackage "hspec-core" "2.10.0.1" , callHackage "hspec-core" "2.10.0.1"
......
...@@ -305,6 +305,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -305,6 +305,8 @@ final: prev: with pkgs.haskell.lib; {
hpack-dhall = prev.callPackage (./pkgs/hpack-dhall.nix) { }; hpack-dhall = prev.callPackage (./pkgs/hpack-dhall.nix) { };
hslua = prev.callPackage (./pkgs/hslua.nix) { };
hslua-aeson = prev.callPackage (./pkgs/hslua-aeson.nix) { }; hslua-aeson = prev.callPackage (./pkgs/hslua-aeson.nix) { };
hspec = prev.callPackage (./pkgs/hspec.nix) { }; hspec = prev.callPackage (./pkgs/hspec.nix) { };
......
{ mkDerivation
, base
, bytestring
, containers
, exceptions
, hslua-aeson
, hslua-classes
, hslua-core
, hslua-marshalling
, hslua-objectorientation
, hslua-packaging
, lib
, lua
, lua-arbitrary
, mtl
, QuickCheck
, quickcheck-instances
, tasty
, tasty-hslua
, tasty-hunit
, text
}:
mkDerivation {
pname = "hslua";
version = "2.2.1";
sha256 = "63cf9d92e90aadfd2887196428fa625e8b2c9b51b942188ed33289c5253ba8e0";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
containers
exceptions
hslua-aeson
hslua-classes
hslua-core
hslua-marshalling
hslua-objectorientation
hslua-packaging
mtl
text
];
testHaskellDepends = [
base
bytestring
containers
exceptions
hslua-aeson
hslua-classes
hslua-core
hslua-marshalling
hslua-objectorientation
hslua-packaging
lua
lua-arbitrary
mtl
QuickCheck
quickcheck-instances
tasty
tasty-hslua
tasty-hunit
text
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://hslua.org/";
description = "Bindings to 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