nixpkgs/pkgs/development/libraries/haskell/attoparsec-text/default.nix

19 lines
553 B
Nix
Raw Normal View History

{ cabal, attoparsec, text }:
cabal.mkDerivation (self: {
pname = "attoparsec-text";
version = "0.8.5.1";
sha256 = "1in0ziqjf2hvlv6yay2b5xkm35j1szzwdfapn5mpflv64qi33i0z";
buildDepends = [ 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.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})