Skip to content
Snippets Groups Projects
Commit aa62c899 authored by Daniel Firth's avatar Daniel Firth Committed by Raoul Hidalgo Charman
Browse files

dual-tree: init at 0.2.3.1

parent f8a62e37
Branches
Tags
No related merge requests found
......@@ -303,6 +303,7 @@ let packages =
"https://github.com/haskell/double-conversion"
"5d092e0664442eaac8ae1d101dba57ce9b1c9b03"
(None Text)
, dual-tree = H.callHackage "dual-tree" "0.2.3.1"
, easy-file = H.callHackage "easy-file" "0.2.2"
, echo = H.callHackage "echo" "0.1.4"
, ed25519 =
......
......@@ -453,6 +453,8 @@ self: with pkgs.haskell.lib; {
double-conversion = self.callPackage (./pkgs/double-conversion.nix) { };
dual-tree = self.callPackage (./pkgs/dual-tree.nix) { };
easy-file = self.callPackage (./pkgs/easy-file.nix) { };
echo = self.callPackage (./pkgs/echo.nix) { };
......
{ mkDerivation
, QuickCheck
, base
, lib
, monoid-extras
, semigroups
, testing-feat
}:
mkDerivation {
pname = "dual-tree";
version = "0.2.3.1";
sha256 = "d0394b94c312a5ae032ee72d811400e3f435138ea05f7be6a4d019131a19d5a6";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base monoid-extras semigroups ];
testHaskellDepends = [
base
monoid-extras
QuickCheck
semigroups
testing-feat
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Rose trees with cached and accumulating monoidal annotations";
license = lib.licenses.bsd3;
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