1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/misc/cpphs/default.nix
2014-03-08 11:27:41 +01:00

18 lines
508 B
Nix

{ cabal, polyparse }:
cabal.mkDerivation (self: {
pname = "cpphs";
version = "1.18.3";
sha256 = "0m2083ynjfxad4ykvpm6c7q1clrm7nsvbwv10abhyzqkpazyzzxy";
isLibrary = true;
isExecutable = true;
buildDepends = [ polyparse ];
meta = {
homepage = "http://projects.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 ];
};
})