summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/BNFC-meta/default.nix
blob: d39544342b3a8a56255d78f629bcebec70a53e46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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 ];
  };
})