1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 12:02:47 +00:00
nixpkgs/pkgs/development/libraries/haskell/parsers/0.9.nix

18 lines
521 B
Nix
Raw Normal View History

{ cabal, charset, doctest, filepath, text, transformers
2013-09-25 17:28:09 +01:00
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "parsers";
version = "0.9";
sha256 = "04lbayvdv2hax4s9sqlnia7jpzv1sgls41ylql0xbi2zhz5rvyyi";
buildDepends = [ charset text transformers unorderedContainers ];
2013-09-25 17:28:09 +01:00
testDepends = [ doctest filepath ];
meta = {
homepage = "http://github.com/ekmett/parsers/";
description = "Parsing combinators";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})