Ticket #46487: Portfile

File Portfile, 1.5 KB (added by J.Gilbey@…, 9 years ago)

Portfile for hs-deepseq-generics

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2
3PortSystem          1.0
4PortGroup           haskell 1.0
5
6haskell.setup       deepseq-generics 0.1.1.2
7checksums           rmd160  ee73b569afc5be13bf12223a6784f0f3d3dd0afc \
8                    sha256  839e1d6ead4c45faa4165f0e82aa8a9d1df7a7c1118bfb1787e8268bfa8bfb06
9
10maintainers         nomaintainer
11platforms           darwin
12license             GPL-2+
13
14description         A GHC.Generics-based package providing a rnf implementation
15long_description    \
16    This package provides a GHC.Generics-based \
17    Control.DeepSeq.Generics.genericRnf function which can be used for \
18    providing a rnf implementation. See the documentation for the genericRnf \
19    function in the Control.DeepSeq.Generics module to get started. \
20    \
21    The original idea was pioneered in the generic-deepseq package \
22    (see http://www.haskell.org/pipermail/haskell-cafe/2012-February/099551.html \
23    for more information). \
24    \
25    This package differs from the generic-deepseq package by working in \
26    combination with the existing deepseq package as opposed to defining \
27    a conflicting drop-in replacement for deepseq's Control.Deepseq module. \
28    \
29    Note: The ability to auto-derive via GHC.Generics has been merged into \
30    deepseq-1.4.0.0. This package is now still useful for writing code that's \
31    also compatible with older deepseq versions not yet providing \
32    GHC.Generics-support.