13a10c3e54
- authenticate: updated to version 1.2.1.1 - blaze-html: added version 0.5.0.0 (unused right now because happstack can't deal with it) - BNFC-meta: updated to version 0.3.0.2 - graphviz: patched build to succeed with transformers 0.3.x - haskeline: updated to version 0.6.4.7 - http-conduit: updated to version 1.4.1.3 - numeric-prelude: updated to version 0.3.0.2 - pandoc: updated to version 1.9.3 svn path=/nixpkgs/trunk/; revision=34087
16 lines
500 B
Nix
16 lines
500 B
Nix
{ cabal, alexMeta, happyMeta, haskellSrcMeta, syb }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "BNFC-meta";
|
|
version = "0.3.0.2";
|
|
sha256 = "0x4x3lpqwjid8rdy6v2wlfbxjvxlg24wjj9fb2niwaqw8b3lyza4";
|
|
buildDepends = [ alexMeta happyMeta haskellSrcMeta syb ];
|
|
noHaddock = true;
|
|
meta = {
|
|
description = "Deriving Quasi-Quoters from BNF Grammars";
|
|
license = self.stdenv.lib.licenses.gpl2;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|