about summary refs log tree commit diff
path: root/third_party/overlays/haskell/extra-pkgs/pa-prelude.nix
blob: 17e1996ab6023d11ba799cf5a5fb6be063dba4cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ 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;
}