bec4023fbe
svn path=/nixpkgs/trunk/; revision=27651
14 lines
302 B
Nix
14 lines
302 B
Nix
{cabal, deepseq}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "attoparsec";
|
|
version = "0.9.1.1";
|
|
sha256 = "1qkkl9pzk4znqh34pchmxbcslybvii35lkxhwf6445lyhj20356b";
|
|
propagatedBuildInputs = [deepseq];
|
|
meta = {
|
|
description = "Fast combinator parsing for bytestrings";
|
|
license = "BSD3";
|
|
};
|
|
})
|
|
|