Add new package ghcParser

This commit is contained in:
Danny Chan 2014-08-23 14:00:21 +02:00
parent 116930f5ba
commit 9fbd7d7ad5
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, happy, cpphs }:
cabal.mkDerivation (self: {
pname = "ghc-parser";
version = "0.1.3.0";
sha256 = "13p09mj92jh4y0v2r672d49fmlz3l5r2r1lqg0jjy6kj045wcfdn";
buildTools = [ happy cpphs ];
meta = {
homepage = "https://github.com/gibiansky/IHaskell";
description = "Haskell source parser from GHC";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -911,6 +911,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
ghcPaths = callPackage ../development/libraries/haskell/ghc-paths {};
ghcParser = callPackage ../development/libraries/haskell/ghc-parser {};
ghcSyb = callPackage ../development/libraries/haskell/ghc-syb {};
ghcSybUtils = callPackage ../development/libraries/haskell/ghc-syb-utils {};