tvl-depot/third_party/overlays/haskell/extra-pkgs/pa-prelude.nix
Profpatsch 0a98f8ec3b chore(third_party/haskell): update pa packages
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>
2023-10-15 18:58:41 +00:00

43 lines
724 B
Nix

{ mkDerivation
, base
, bytestring
, containers
, error
, exceptions
, lib
, mtl
, profunctors
, PyF
, scientific
, semigroupoids
, template-haskell
, text
, these
, validation-selective
, vector
}:
mkDerivation {
pname = "pa-prelude";
version = "0.2.0.0";
sha256 = "68015f7c19e9c618fc04e2516baccfce52af24efb9ca1480162c9ea0aef7f301";
libraryHaskellDepends = [
base
bytestring
containers
error
exceptions
mtl
profunctors
PyF
scientific
semigroupoids
template-haskell
text
these
validation-selective
vector
];
homepage = "https://github.com/possehl-analytics/pa-hackage";
description = "The Possehl Analytics Prelude";
license = lib.licenses.bsd3;
}