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

hslua-classes: init at 2.2.0

parent b0119790
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-classes" "2.2.0"
, callHackage "hslua" "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"
......
...@@ -309,6 +309,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -309,6 +309,8 @@ final: prev: with pkgs.haskell.lib; {
hslua-aeson = prev.callPackage (./pkgs/hslua-aeson.nix) { }; hslua-aeson = prev.callPackage (./pkgs/hslua-aeson.nix) { };
hslua-classes = prev.callPackage (./pkgs/hslua-classes.nix) { };
hspec = prev.callPackage (./pkgs/hspec.nix) { }; hspec = prev.callPackage (./pkgs/hspec.nix) { };
hspec-contrib = prev.callPackage (./pkgs/hspec-contrib.nix) { }; hspec-contrib = prev.callPackage (./pkgs/hspec-contrib.nix) { };
......
{ mkDerivation
, base
, bytestring
, containers
, exceptions
, hslua-core
, hslua-marshalling
, lib
, lua-arbitrary
, QuickCheck
, quickcheck-instances
, tasty
, tasty-hslua
, tasty-hunit
, tasty-quickcheck
, text
}:
mkDerivation {
pname = "hslua-classes";
version = "2.2.0";
sha256 = "4145d3929edd4c49f6663102177614e556be81d3c7c9549998266006f9a8fefc";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
containers
exceptions
hslua-core
hslua-marshalling
text
];
testHaskellDepends = [
base
bytestring
containers
exceptions
hslua-core
hslua-marshalling
lua-arbitrary
QuickCheck
quickcheck-instances
tasty
tasty-hslua
tasty-hunit
tasty-quickcheck
text
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://hslua.org/";
description = "Type classes for HsLua";
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