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

fingertree: init at 0.1.5.0

parent 901f0dc7
No related merge requests found
......@@ -275,6 +275,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "file-embed" "0.0.15.0"
, callHackage "filemanip" "0.3.6.3"
, callHackage "filepattern" "0.1.3"
, callHackage "fingertree" "0.1.5.0"
, callHackage "finite-field" "0.10.0"
, callHackage "first-class-families" "0.8.0.1"
, callHackage "fin" "0.2.1"
......
......@@ -365,6 +365,8 @@ self: with pkgs.haskell.lib; {
fin = self.callPackage (./pkgs/fin.nix) { };
fingertree = self.callPackage (./pkgs/fingertree.nix) { };
finite-field = self.callPackage (./pkgs/finite-field.nix) { };
first-class-families = self.callPackage (./pkgs/first-class-families.nix) { };
......
{ mkDerivation
, base
, HUnit
, lib
, QuickCheck
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
}:
mkDerivation {
pname = "fingertree";
version = "0.1.5.0";
sha256 = "f3263c92fa8b18f1e1a64cd12480c8c1bee2c1fa0584ab3345f3dd8522bdbf71";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
testHaskellDepends = [
base
HUnit
QuickCheck
test-framework
test-framework-hunit
test-framework-quickcheck2
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Generic finger-tree structure, with example instances";
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