nixpkgs/pkgs/development/tools/misc/cpphs/default.nix
2012-07-14 11:14:40 +02:00

17 lines
454 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "cpphs";
version = "1.14";
sha256 = "1lscgylcbbny60lx36xwm8y22jmbv23159pfn8n87kbskq6cpk0z";
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 ];
};
})