nixpkgs/pkgs/development/tools/misc/cpphs/default.nix
Peter Simons 8f8d3f1747 haskell-cpphs: updated to version 1.13
svn path=/nixpkgs/trunk/; revision=29500
2011-09-26 16:18:09 +00:00

20 lines
505 B
Nix

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