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

textmath: init at 0.12.5.4

parent e227c8f2
No related merge requests found
......@@ -532,6 +532,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "test-framework" "0.8.2.0"
, callHackage "test-framework-hunit" "0.3.0.2"
, callHackage "test-framework-quickcheck2" "0.3.0.5"
, callHackage "texmath" "0.12.5.4"
, callHackage "text-display" "0.0.3.0"
, callHackage "text-manipulate" "0.3.1.0"
, callHackage "text-metrics" "0.3.2"
......
......@@ -695,6 +695,8 @@ final: prev: with pkgs.haskell.lib; {
test-framework-quickcheck2 = prev.callPackage (./pkgs/test-framework-quickcheck2.nix) { };
texmath = prev.callPackage (./pkgs/texmath.nix) { };
text-display = prev.callPackage (./pkgs/text-display.nix) { };
text-manipulate = prev.callPackage (./pkgs/text-manipulate.nix) { };
......
{ mkDerivation
, base
, bytestring
, containers
, directory
, filepath
, lib
, mtl
, pandoc-types
, parsec
, pretty-show
, split
, syb
, tagged
, tasty
, tasty-golden
, text
, xml
}:
mkDerivation {
pname = "texmath";
version = "0.12.5.4";
sha256 = "98423b2e07d90d3f50afa7cd4755c8e65bc8712db248ba030bc478518646c8b6";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
mtl
pandoc-types
parsec
split
syb
text
xml
];
testHaskellDepends = [
base
bytestring
directory
filepath
pretty-show
tagged
tasty
tasty-golden
text
xml
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/jgm/texmath";
description = "Conversion between math formats";
license = lib.licenses.gpl2Only;
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