revise .cabal
This commit is contained in:
parent
2e58419d15
commit
055d98da1c
@ -13,6 +13,7 @@ License: BSD
|
|||||||
Url: https://hackage.haskell.org/package/%{pkg_name}
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
# Begin cabal-rpm sources:
|
# Begin cabal-rpm sources:
|
||||||
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
||||||
|
Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal
|
||||||
# End cabal-rpm sources
|
# End cabal-rpm sources
|
||||||
|
|
||||||
# Begin cabal-rpm deps:
|
# Begin cabal-rpm deps:
|
||||||
@ -68,6 +69,7 @@ This package provides the Haskell %{pkg_name} profiling library.
|
|||||||
%prep
|
%prep
|
||||||
# Begin cabal-rpm setup:
|
# Begin cabal-rpm setup:
|
||||||
%setup -q -n %{pkgver}
|
%setup -q -n %{pkgver}
|
||||||
|
cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||||
# End cabal-rpm setup
|
# End cabal-rpm setup
|
||||||
|
|
||||||
|
|
||||||
|
57
transformers-base-0.4.5.2.cabal
Normal file
57
transformers-base-0.4.5.2.cabal
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
Name: transformers-base
|
||||||
|
Version: 0.4.5.2
|
||||||
|
x-revision: 1
|
||||||
|
Category: Control
|
||||||
|
Stability: experimental
|
||||||
|
Synopsis: Lift computations from the bottom of a transformer stack
|
||||||
|
Description:
|
||||||
|
This package provides a straightforward port of @monadLib@'s BaseM
|
||||||
|
typeclass to @transformers@.
|
||||||
|
|
||||||
|
Homepage: https://github.com/mvv/transformers-base
|
||||||
|
Bug-Reports: https://github.com/mvv/transformers-base/issues
|
||||||
|
|
||||||
|
Author:
|
||||||
|
Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>,
|
||||||
|
Bas van Dijk <v.dijk.bas@gmail.com>
|
||||||
|
Maintainer: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
|
||||||
|
Copyright:
|
||||||
|
2011 Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>,
|
||||||
|
Bas van Dijk <v.dijk.bas@gmail.com>
|
||||||
|
License: BSD3
|
||||||
|
License-File: LICENSE
|
||||||
|
|
||||||
|
Extra-Source-Files:
|
||||||
|
README.md
|
||||||
|
|
||||||
|
Tested-With: GHC==7.0.4, GHC==7.4.2, GHC==7.6.3, GHC==7.8.4,
|
||||||
|
GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.1
|
||||||
|
|
||||||
|
Cabal-Version: >= 1.8
|
||||||
|
Build-Type: Simple
|
||||||
|
|
||||||
|
Source-Repository head
|
||||||
|
Type: git
|
||||||
|
Location: https://github.com/mvv/transformers-base.git
|
||||||
|
|
||||||
|
Flag OrphanInstances
|
||||||
|
Description:
|
||||||
|
Import orphan Applicative instances for lazy and strict ST if needed
|
||||||
|
Default: True
|
||||||
|
|
||||||
|
Library
|
||||||
|
Build-Depends:
|
||||||
|
base >= 3 && < 5 && (< 4.4 || >= 4.5),
|
||||||
|
stm >= 2.3,
|
||||||
|
transformers >= 0.2 && <0.6,
|
||||||
|
transformers-compat >= 0.6.1
|
||||||
|
Hs-Source-Dirs: src
|
||||||
|
GHC-Options: -Wall
|
||||||
|
if flag(OrphanInstances)
|
||||||
|
Build-Depends:
|
||||||
|
base-orphans >= 0.3
|
||||||
|
CPP-Options: -DHS_TRANSFORMERS_BASE__ORPHANS=1
|
||||||
|
else
|
||||||
|
CPP-Options: -DHS_TRANSFORMERS_BASE__ORPHANS=0
|
||||||
|
Exposed-Modules:
|
||||||
|
Control.Monad.Base
|
Loading…
Reference in New Issue
Block a user