diff options
author | Profpatsch <mail@profpatsch.de> | 2023-10-15T18·16+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-10-15T18·58+0000 |
commit | 0a98f8ec3b7c98b53e9bb1203cb5b63ecdc068ce (patch) | |
tree | d30e5a18cf121605767d5905abf50807ca7be6db /third_party/overlays/haskell/extra-pkgs/pa-field-parser.nix | |
parent | 9aafbe8d952d6e31fa7273572f00ec79d9d15554 (diff) |
chore(third_party/haskell): update pa packages r/6816
Change-Id: I8abcb479b0f5c0bd6ed1abc3c9618c2362ff835a Reviewed-on: https://cl.tvl.fyi/c/depot/+/9740 Autosubmit: Profpatsch <mail@profpatsch.de> Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'third_party/overlays/haskell/extra-pkgs/pa-field-parser.nix')
-rw-r--r-- | third_party/overlays/haskell/extra-pkgs/pa-field-parser.nix | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/third_party/overlays/haskell/extra-pkgs/pa-field-parser.nix b/third_party/overlays/haskell/extra-pkgs/pa-field-parser.nix new file mode 100644 index 000000000000..a3c146ee098b --- /dev/null +++ b/third_party/overlays/haskell/extra-pkgs/pa-field-parser.nix @@ -0,0 +1,39 @@ +{ mkDerivation +, aeson +, aeson-better-errors +, attoparsec +, base +, case-insensitive +, containers +, lib +, pa-error-tree +, pa-prelude +, scientific +, semigroupoids +, template-haskell +, text +, time +}: +mkDerivation { + pname = "pa-field-parser"; + version = "0.3.0.0"; + sha256 = "528c2b6bf5ad6454861b059c7eb6924f4c32bcb5b8faa4c2389d9ddfd92fcd57"; + libraryHaskellDepends = [ + aeson + aeson-better-errors + attoparsec + base + case-insensitive + containers + pa-error-tree + pa-prelude + scientific + semigroupoids + template-haskell + text + time + ]; + homepage = "https://github.com/possehl-analytics/pa-hackage"; + description = "“Vertical” parsing of values"; + license = lib.licenses.bsd3; +} |