nixpkgs/pkgs/development/tools/haskell/BNFC-meta/default.nix
Peter Simons c70c0029eb Updated BNFC to the latest version and fixed the spelling of its attribute.
Added BNFC-meta, alex-meta, and happy-meta.

Moved these tools into the tool section of haskell-packages.nix, and
paid special attention to the intended alphabetic order.

svn path=/nixpkgs/trunk/; revision=28506
2011-08-12 09:04:07 +00:00

18 lines
520 B
Nix

{ cabal, alexMeta, happyMeta, haskellSrcMeta }:
cabal.mkDerivation (self: {
pname = "BNFC-meta";
version = "0.2.1";
sha256 = "0c58m1xkaylgp9f3r71nfgqb30fpidldz46dbwalhkb7fm0k4gmm";
buildDepends = [ alexMeta happyMeta haskellSrcMeta ];
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
self.stdenv.lib.maintainers.simons
];
};
})