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

hslua-module-doclayout: init at 1.0.4

parent ba4744fb
Branches
Tags
No related merge requests found
......@@ -276,6 +276,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "hslua-core" "2.2.1"
, callHackage "hslua-classes" "2.2.0"
, callHackage "hslua-marshalling" "2.2.1"
, callHackage "hslua-module-doclayout" "1.0.4"
, callHackage "hslua-module-path" "1.0.3"
, callHackage "hslua-module-system" "1.0.2"
, callHackage "hslua-module-text" "1.0.2"
......
......@@ -325,6 +325,8 @@ final: prev: with pkgs.haskell.lib; {
hslua-marshalling = prev.callPackage (./pkgs/hslua-marshalling.nix) { };
hslua-module-doclayout = prev.callPackage (./pkgs/hslua-module-doclayout.nix) { };
hslua-module-path = prev.callPackage (./pkgs/hslua-module-path.nix) { };
hslua-module-system = prev.callPackage (./pkgs/hslua-module-system.nix) { };
......
{ mkDerivation
, base
, doclayout
, hslua
, lib
, tasty
, tasty-hunit
, tasty-lua
, text
}:
mkDerivation {
pname = "hslua-module-doclayout";
version = "1.0.4";
sha256 = "1843532ca0721a728e38edbdefd1a5f8155b03a1612149e6d919c2cc9e735893";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base doclayout hslua text ];
testHaskellDepends = [
base
doclayout
hslua
tasty
tasty-hunit
tasty-lua
text
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/hslua/hslua-module-doclayout";
description = "Lua module wrapping Text.DocLayout.";
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