summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools/misc/cpphs/default.nix
blob: 6d0ca9884d68078dc62ecbe1135bf7aa5336704d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal }:

cabal.mkDerivation (self: {
  pname = "cpphs";
  version = "1.12";
  sha256 = "18c8yx8y54b2q086sqlp4vhslkb7mm1gry1f13mki43x93kd1vdj";
  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
      self.stdenv.lib.maintainers.simons
    ];
  };
})