krebs hspkgs megaparsec: init at 4.1.0

This commit is contained in:
tv 2015-10-17 06:56:45 +02:00
parent d7367961c3
commit 4e4e169646
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ mkDerivation, base, bytestring, fetchzip, HUnit, mtl, QuickCheck
, stdenv, test-framework, test-framework-hunit
, test-framework-quickcheck2, text, transformers
}:
mkDerivation {
pname = "megaparsec";
version = "4.1.0";
src = fetchzip {
url = "https://hackage.haskell.org/package/megaparsec-4.1.0/megaparsec-4.1.0.tar.gz";
sha256 = "1a1ka53a3r91lwnlvzaa8nyk1dxvfd1ij1i5x5vp83q2r9z9dcmi";
};
libraryHaskellDepends = [ base bytestring mtl text transformers ];
testHaskellDepends = [
base HUnit mtl QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 transformers
];
homepage = "https://github.com/mrkkrp/megaparsec";
description = "Monadic parser combinators";
license = stdenv.lib.licenses.bsd3;
}