2012-02-14 17:00:37 +00:00
|
|
|
{ cabal, Cabal, colorizeHaskell, filepath, pcreLight }:
|
2009-07-08 13:34:14 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-08 13:34:14 +01:00
|
|
|
pname = "ghc-core";
|
2011-08-07 20:34:24 +01:00
|
|
|
version = "0.5.4";
|
|
|
|
sha256 = "1s68m2zkpz0n927rgzg0l0r5v8pk3z03rlkd82h83agw0hzb9ng7";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-02-14 17:00:37 +00:00
|
|
|
buildDepends = [ Cabal colorizeHaskell filepath pcreLight ];
|
2009-07-08 13:34:14 +01:00
|
|
|
meta = {
|
2011-08-07 20:34:24 +01:00
|
|
|
homepage = "http://code.haskell.org/~dons/code/ghc-core";
|
2009-07-08 13:34:14 +01:00
|
|
|
description = "Display GHC's core and assembly output in a pager";
|
2011-08-07 20:34:24 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 00:00:20 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-07-08 13:34:14 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|