mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
17 lines
508 B
Nix
17 lines
508 B
Nix
{ cabal, polyparse }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cpphs";
|
|
version = "1.18.5";
|
|
sha256 = "0bqfz0wkfnxvv711fgmhmh6rbwffgna1pfqbj7whb6crqji9w7g7";
|
|
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 ];
|
|
};
|
|
})
|