2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, ghcPaths }:
|
2009-04-20 01:18:51 +01:00
|
|
|
|
2011-08-23 11:35:49 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-20 01:18:51 +01:00
|
|
|
pname = "vacuum";
|
2011-10-27 18:05:53 +01:00
|
|
|
version = "1.0.0.2";
|
|
|
|
sha256 = "1amlzd89952fvw1sbajf9kv3f2s2i6xbqs1zjxw442achg465y7i";
|
2011-08-23 11:35:49 +01:00
|
|
|
extraLibraries = [ ghcPaths ];
|
2009-04-20 01:18:51 +01:00
|
|
|
meta = {
|
2011-10-11 17:48:28 +01:00
|
|
|
homepage = "http://web.archive.org/web/20100410115820/http://moonpatio.com/vacuum/";
|
2009-04-20 14:01:31 +01:00
|
|
|
description = "Extract graph representations of ghc heap values";
|
2011-08-15 12:27:02 +01:00
|
|
|
license = "LGPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-04-20 01:18:51 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|