nixpkgs/pkgs/development/libraries/haskell/criterion/default.nix
Andres Löh fcdc36c848 Added gtk-based plot capabilities for criterion.
svn path=/nixpkgs/trunk/; revision=24778
2010-11-19 19:34:41 +00:00

23 lines
645 B
Nix

{cabal, deepseq, mtl, parallel, parsec, vector, vectorAlgorithms,
mwcRandom, statistics, Chart, dataAccessor}:
cabal.mkDerivation (self : {
pname = "criterion";
version = "0.5.0.5";
sha256 = "1b1g7a2ip07j0554cj4d0413859fbdkaxpcgq2znjz7wh8z5aabn";
propagatedBuildInputs = [
deepseq mtl parallel parsec vector vectorAlgorithms mwcRandom statistics
Chart dataAccessor
];
configureFlags = "-fchart";
meta = {
homepage = "http://bitbucket.org/bos/criterion";
description = "Robust, reliable performance measurement and analysis";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})