2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, alex }:
|
2011-11-14 16:57:26 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "bytestring-lexing";
|
2013-03-21 10:15:42 +00:00
|
|
|
version = "0.4.2";
|
|
|
|
sha256 = "0s9rip1ik7f29n2i88277vhy7dqhc2bb5bb9l6fd47disb78ic9h";
|
2011-11-14 16:57:26 +00:00
|
|
|
buildTools = [ alex ];
|
|
|
|
meta = {
|
2012-01-29 16:24:02 +00:00
|
|
|
homepage = "http://code.haskell.org/~wren/";
|
2012-02-03 21:00:18 +00:00
|
|
|
description = "Parse and produce literals efficiently from strict or lazy bytestrings";
|
2011-11-14 16:57:26 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-11-14 16:57:26 +00:00
|
|
|
};
|
|
|
|
})
|