nixpkgs/pkgs/development/tools/haskell/BNFC-meta/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

15 lines
492 B
Nix

{ cabal, alexMeta, happyMeta, haskellSrcMeta, syb }:
cabal.mkDerivation (self: {
pname = "BNFC-meta";
version = "0.4.0.1";
sha256 = "0x31a25njbgd3r8shh7rrqa9qq66iqjhh82k538p9bd2hblg30ka";
buildDepends = [ alexMeta happyMeta haskellSrcMeta syb ];
meta = {
description = "Deriving Parsers and Quasi-Quoters from BNF Grammars";
license = self.stdenv.lib.licenses.gpl2;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})