nixpkgs/pkgs/development/libraries/haskell/attoparsec-text/default.nix
Andres Löh fd258d6fe1 Added complete yesod.
Some downgrades were necessary.

svn path=/nixpkgs/trunk/; revision=28364
2011-08-07 22:51:22 +00:00

16 lines
530 B
Nix

{cabal, attoparsec, text} :
cabal.mkDerivation (self : {
pname = "attoparsec-text";
version = "0.8.5.1";
sha256 = "1in0ziqjf2hvlv6yay2b5xkm35j1szzwdfapn5mpflv64qi33i0z";
propagatedBuildInputs = [ attoparsec text ];
meta = {
homepage = "http://patch-tag.com/r/felipe/attoparsec-text/home";
description = "Fast combinator parsing for texts";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})