about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/criterion/default.nix
blob: 33cf33d2621eaedd999f3471a10859c3cf494631 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ cabal, aeson, Cabal, deepseq, filepath, hastache, mtl, mwcRandom
, parsec, statistics, time, transformers, vector, vectorAlgorithms
}:

cabal.mkDerivation (self: {
  pname = "criterion";
  version = "0.6.0.1";
  sha256 = "0k6ip41w5h1z8gl67a8vsb6c3md5nc4yh1vd6dysp9fqgn0vky0a";
  buildDepends = [
    aeson Cabal deepseq filepath hastache mtl mwcRandom parsec
    statistics time transformers vector vectorAlgorithms
  ];
  meta = {
    homepage = "https://github.com/bos/criterion";
    description = "Robust, reliable performance measurement and analysis";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})