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

data-sketches: init at 0.3.1.0

parent ca6f9db8
No related merge requests found
......@@ -174,6 +174,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "cryptohash" "0.11.9"
, callHackage "daemons" "0.3.0"
, callHackage "data-fix" "0.3.2"
, callHackage "data-sketches" "0.3.1.0"
, callHackage "data-sketches-core" "0.1.0.0"
, callHackage "dec" "0.0.5"
, callHackage "dense-linear-algebra" "0.1.0.0"
......
......@@ -191,6 +191,8 @@ final: prev: with pkgs.haskell.lib; {
data-fix = prev.callPackage (./pkgs/data-fix.nix) { };
data-sketches = prev.callPackage (./pkgs/data-sketches.nix) { };
data-sketches-core = prev.callPackage (./pkgs/data-sketches-core.nix) { };
dec = prev.callPackage (./pkgs/dec.nix) { };
......
{ mkDerivation
, base
, criterion
, data-sketches-core
, ghc-prim
, hspec
, hspec-discover
, lib
, mtl
, mwc-random
, pretty-show
, primitive
, QuickCheck
, statistics
, vector
, vector-algorithms
}:
mkDerivation {
pname = "data-sketches";
version = "0.3.1.0";
sha256 = "7ff596faf9903e57e5fad3b7517721775b3ab874ac9a15b4b15b5001d9296128";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
data-sketches-core
ghc-prim
mtl
mwc-random
primitive
vector
vector-algorithms
];
testHaskellDepends = [
base
data-sketches-core
ghc-prim
hspec
hspec-discover
mtl
mwc-random
pretty-show
primitive
QuickCheck
statistics
vector
vector-algorithms
];
testToolDepends = [ hspec-discover ];
benchmarkHaskellDepends = [
base
criterion
data-sketches-core
ghc-prim
mtl
mwc-random
primitive
vector
vector-algorithms
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/iand675/datasketches-haskell#readme";
license = lib.licenses.asl20;
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