2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, Cabal }:
|
2009-04-20 02:18:51 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-20 02:18:51 +02:00
|
|
|
pname = "cpphs";
|
2012-02-07 11:34:43 +01:00
|
|
|
version = "1.13.3";
|
|
|
|
sha256 = "1dnz4992hr662ys1lkf6iyqmi2a3bksim8dlryqwd9wx9h24lhq2";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal ];
|
2009-04-20 02:18:51 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://haskell.org/cpphs/";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "A liberalised re-implementation of cpp, the C pre-processor";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = "LGPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-04-20 02:18:51 +02:00
|
|
|
};
|
|
|
|
})
|