about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/happstack/happstack-data.nix
blob: d1603e0441a56014acf7bb88b9ada136330fc0d8 (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
{ cabal, binary, mtl, syb, sybWithClass, sybWithClassInstancesText
, text, time
}:

cabal.mkDerivation (self: {
  pname = "happstack-data";
  version = "6.0.0";
  sha256 = "1wdvylqgy3iw41ksw2ys4f0vyak8sbk6gginljvz07rrh04klyhl";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    binary mtl syb sybWithClass sybWithClassInstancesText text time
  ];
  meta = {
    homepage = "http://happstack.com";
    description = "Happstack data manipulation libraries";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})