nixpkgs/pkgs/development/libraries/haskell/criterion/default.nix

33 lines
1.1 KiB
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, aeson, ansiWlPprint, binary, cassava, deepseq, either
, filepath, Glob, hastache, HUnit, mtl, mwcRandom
, optparseApplicative, parsec, QuickCheck, statistics
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2, text
, time, transformers, vector, vectorAlgorithms
}:
cabal.mkDerivation (self: {
pname = "criterion";
version = "1.0.0.2";
sha256 = "1r30vcrplilj3silnrmn0r5m0df27icdsgd5hx35li9yrs862n95";
isLibrary = true;
isExecutable = true;
doCheck = false;
buildDepends = [
aeson ansiWlPprint binary cassava deepseq either filepath Glob
hastache mtl mwcRandom optparseApplicative parsec statistics text
time transformers vector vectorAlgorithms
];
testDepends = [
HUnit QuickCheck statistics testFramework testFrameworkHunit
testFrameworkQuickcheck2 vector
];
meta = {
homepage = "http://www.serpentine.com/criterion";
description = "Robust, reliable performance measurement and analysis";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})