nixpkgs/pkgs/development/tools/haskell/alex-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
470 B
Nix

{ cabal, haskellSrcMeta }:
cabal.mkDerivation (self: {
pname = "alex-meta";
version = "0.2.0.1";
sha256 = "1b508pg4a9f0ln9k91j5dj0mja3faxasz5k6qyxqz3zqnlysm2gj";
buildDepends = [ haskellSrcMeta ];
meta = {
description = "Quasi-quoter for Alex lexers";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})