3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/haskell/BNFC/default.nix

26 lines
790 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-10-12 17:02:26 +01:00
{ cabal, alex, deepseq, doctest, filepath, happy, hspec, HUnit, mtl
, QuickCheck, temporary
}:
cabal.mkDerivation (self: {
pname = "BNFC";
2014-10-12 17:02:26 +01:00
version = "2.7.1";
sha256 = "1n9l64wzga3i7ifh2k5rwhxp60gb0av5fszygw5mvr31r64cf4fp";
isLibrary = true;
isExecutable = true;
buildDepends = [ deepseq filepath mtl ];
testDepends = [
2014-10-12 17:02:26 +01:00
deepseq doctest filepath hspec HUnit mtl QuickCheck temporary
];
2014-03-26 11:49:46 +00:00
buildTools = [ alex happy ];
meta = {
homepage = "http://bnfc.digitalgrammars.com/";
description = "A compiler front-end generator";
license = self.stdenv.lib.licenses.gpl2;
platforms = self.ghc.meta.platforms;
maintainers = with self.stdenv.lib.maintainers; [ andres simons ];
};
})