2014-03-07 14:13:29 -08:00
|
|
|
{ cabal, polyparse }:
|
2009-04-19 17:18:51 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-19 17:18:51 -07:00
|
|
|
pname = "cpphs";
|
2014-03-26 01:51:12 -07:00
|
|
|
version = "1.18.4";
|
|
|
|
sha256 = "0rmcq66wn7lsc5g1wk6bbsr7jiw8h6bz5cbvdywnv7vmwsx8gh51";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2014-03-07 14:13:29 -08:00
|
|
|
buildDepends = [ polyparse ];
|
2009-04-19 17:18:51 -07:00
|
|
|
meta = {
|
2014-02-18 03:06:10 -08:00
|
|
|
homepage = "http://projects.haskell.org/cpphs/";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "A liberalised re-implementation of cpp, the C pre-processor";
|
2011-08-09 16:00:20 -07:00
|
|
|
license = "LGPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-04-19 17:18:51 -07:00
|
|
|
};
|
|
|
|
})
|