summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HAppS/HAppS-Data.nix
blob: e41cd9515a836ec9dfe91fd8087775e3fbc74e51 (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
{cabal, mtl, sybWithClass, HaXml, HAppSUtil, bytestring, binary}:

cabal.mkDerivation (self : {
    pname = "HAppS-Data";
    version = "0.9.3";
    sha256 = "b23c6f4a949927194e47f9781edc3b7d38513210de4a24987859d68b375bc335";
    propagatedBuildInputs = [mtl sybWithClass HaXml HAppSUtil bytestring binary];
    meta = {
        description = ''HAppS data manipulation libraries'';
        longDescription = ''
          This package provides libraries for:

            * Deriving instances for your datatypes.

            * Producing default values of Haskell datatypes.

            * Normalizing values of Haskell datatypes.

            * Marshalling Haskell values to and from XML.

            * Marshalling Haskell values to and from HTML forms.
        '';
        license = "free";
    };
})