nixpkgs/pkgs/development/tools/misc/cpphs/default.nix
Peter Simons acb52d79bf haskell-cpphs: revert update to version 1.13
The new version doesn't compile. I've reported the problem upstream.

svn path=/nixpkgs/trunk/; revision=29501
2011-09-26 16:33:15 +00:00

20 lines
505 B
Nix

{ 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
];
};
})