1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 01:46:30 +00:00
nixpkgs/pkgs/development/libraries/haskell/attoparsec/default.nix

14 lines
302 B
Nix
Raw Normal View History

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