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