about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/happstack/happstack-data.nix
blob: 6f39e82739d3c0cbe695f6926f9c380c103ba0ec (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.1";
  sha256 = "0v2ln4mdnild72p02mzjn8mn5srvjixsjqjgkdqzshvxjnnm95l8";
  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
    ];
  };
})