1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 00:01:24 -04:00
nixpkgs/pkgs/development/tools/haskell/BNFC-meta/default.nix

15 lines
492 B
Nix
Raw Normal View History

{ 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 ];
};
})