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

statistics: init at 0.16.1.0

parent 033c799b
Branches
Tags
No related merge requests found
...@@ -530,6 +530,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -530,6 +530,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "sop-core" "0.5.0.1" , callHackage "sop-core" "0.5.0.1"
, callHackage "souffle-haskell" "3.5.0" , callHackage "souffle-haskell" "3.5.0"
, callHackage "split" "0.2.3.3" , callHackage "split" "0.2.3.3"
, callHackage "statistics" "0.16.1.0"
, callHackage "streaming-commons" "0.2.2.4" , callHackage "streaming-commons" "0.2.2.4"
, callHackage "strict" "0.4.0.1" , callHackage "strict" "0.4.0.1"
, callHackage "string-interpolate" "0.3.1.2" , callHackage "string-interpolate" "0.3.1.2"
......
...@@ -715,6 +715,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -715,6 +715,8 @@ final: prev: with pkgs.haskell.lib; {
split = prev.callPackage (./pkgs/split.nix) { }; split = prev.callPackage (./pkgs/split.nix) { };
statistics = prev.callPackage (./pkgs/statistics.nix) { };
streaming-commons = prev.callPackage (./pkgs/streaming-commons.nix) { }; streaming-commons = prev.callPackage (./pkgs/streaming-commons.nix) { };
strict = prev.callPackage (./pkgs/strict.nix) { }; strict = prev.callPackage (./pkgs/strict.nix) { };
......
{ mkDerivation
, aeson
, async
, base
, binary
, data-default-class
, deepseq
, dense-linear-algebra
, erf
, ieee754
, lib
, math-functions
, mwc-random
, parallel
, primitive
, QuickCheck
, random
, tasty
, tasty-expected-failure
, tasty-hunit
, tasty-quickcheck
, vector
, vector-algorithms
, vector-binary-instances
, vector-th-unbox
}:
mkDerivation {
pname = "statistics";
version = "0.16.1.0";
sha256 = "e8482a5c7605b60ea76288f36bd7feeadd145a0e48b1a6006e6ba9680b9e1900";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
async
base
binary
data-default-class
deepseq
dense-linear-algebra
math-functions
mwc-random
parallel
primitive
random
vector
vector-algorithms
vector-binary-instances
vector-th-unbox
];
testHaskellDepends = [
aeson
base
binary
dense-linear-algebra
erf
ieee754
math-functions
primitive
QuickCheck
tasty
tasty-expected-failure
tasty-hunit
tasty-quickcheck
vector
vector-algorithms
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell/statistics";
description = "A library of statistical types, data, and functions";
license = lib.licenses.bsd2;
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