-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build
criterion
with embedded assets
- Loading branch information
Gabriel Gonzalez
committed
Dec 2, 2017
1 parent
5e042df
commit 9b55900
Showing
3 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ mkDerivation, aeson, ansi-wl-pprint, base, base-compat, binary | ||
, bytestring, cassava, code-page, containers, deepseq, directory | ||
, exceptions, fetchgit, filepath, Glob, HUnit, js-flot, js-jquery | ||
, microstache, mtl, mwc-random, optparse-applicative, parsec | ||
, QuickCheck, semigroups, statistics, stdenv, tasty, tasty-hunit | ||
, tasty-quickcheck, text, time, transformers, transformers-compat | ||
, vector, vector-algorithms | ||
}: | ||
mkDerivation { | ||
pname = "criterion"; | ||
version = "1.2.4.0"; | ||
src = fetchgit { | ||
url = "https://github.com/bos/criterion"; | ||
sha256 = "0ir02sgfr40y77bh5q1sajld387bjkwl5gdlc7cwz9xcyadk8019"; | ||
rev = "bea91eae7a6c0d4246045f27c9462ea6d138591a"; | ||
}; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ | ||
aeson ansi-wl-pprint base base-compat binary bytestring cassava | ||
code-page containers deepseq directory exceptions filepath Glob | ||
js-flot js-jquery microstache mtl mwc-random optparse-applicative | ||
parsec semigroups statistics text time transformers | ||
transformers-compat vector vector-algorithms | ||
]; | ||
executableHaskellDepends = [ base optparse-applicative ]; | ||
testHaskellDepends = [ | ||
aeson base bytestring deepseq directory HUnit QuickCheck statistics | ||
tasty tasty-hunit tasty-quickcheck vector | ||
]; | ||
homepage = "http://www.serpentine.com/criterion"; | ||
description = "Robust, reliable performance measurement and analysis"; | ||
license = stdenv.lib.licenses.bsd3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,12 @@ | ||
resolver: lts-9.6 | ||
packages: | ||
- . | ||
- location: | ||
git: https://github.com/bos/criterion.git | ||
commit: bea91eae7a6c0d4246045f27c9462ea6d138591a | ||
extra-dep: true | ||
flags: | ||
criterion: | ||
embed-data-files: true | ||
extra-deps: | ||
- statistics-0.14.0.2 |