2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, colorizeHaskell, filepath, pcreLight }:
|
2009-07-08 14:34:14 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-08 14:34:14 +02:00
|
|
|
pname = "ghc-core";
|
2012-11-11 22:50:40 +01:00
|
|
|
version = "0.5.6";
|
|
|
|
sha256 = "11byidxq2mcqams9a7df0hwwlzir639mr1s556sw5rrbi7jz6d7c";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ colorizeHaskell filepath pcreLight ];
|
2009-07-08 14:34:14 +02:00
|
|
|
meta = {
|
2012-11-11 22:50:40 +01:00
|
|
|
homepage = "https://github.com/shachaf/ghc-core";
|
2009-07-08 14:34:14 +02:00
|
|
|
description = "Display GHC's core and assembly output in a pager";
|
2011-08-07 21:34:24 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-08 14:34:14 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|