2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, attoparsec, filepath, network, time }:
|
2011-07-11 00:17:53 -07:00
|
|
|
|
2011-08-09 17:35:08 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-11 00:17:53 -07:00
|
|
|
pname = "hp2any-core";
|
2013-03-06 02:06:01 -08:00
|
|
|
version = "0.11.2";
|
|
|
|
sha256 = "1gmw9bggw8hsp6pi0xgrryf0sqjb1aaxbwh85q5h72h4ixskwn1y";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ attoparsec filepath network time ];
|
2011-07-11 00:17:53 -07:00
|
|
|
meta = {
|
2011-08-09 17:35:08 -07:00
|
|
|
homepage = "http://www.haskell.org/haskellwiki/Hp2any";
|
2011-07-11 00:17:53 -07:00
|
|
|
description = "Heap profiling helper library";
|
2011-08-09 17:35:08 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-11 00:17:53 -07:00
|
|
|
};
|
|
|
|
})
|