about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/cpphs/default.nix
blob: e5c9df96aab955ad902c016d41403ba769fa2d75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ cabal }:

cabal.mkDerivation (self: {
  pname = "cpphs";
  version = "1.17.1";
  sha256 = "1xk1gk3skgiy6bc8rdhm7i3f6b5nqsm9nz6qswbxq94nxmw3pg9p";
  isLibrary = true;
  isExecutable = true;
  meta = {
    homepage = "http://haskell.org/cpphs/";
    description = "A liberalised re-implementation of cpp, the C pre-processor";
    license = "LGPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})