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