-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathjailbreak-cabal.cabal
37 lines (32 loc) · 1.29 KB
/
jailbreak-cabal.cabal
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
26
27
28
29
30
31
32
33
34
35
36
37
name: jailbreak-cabal
version: 1.4.1
synopsis: Strip version restrictions from Cabal files
description: Strip version restrictions from build dependencies in Cabal files.
category: Distribution
stability: stable
homepage: https://github.com/NixOS/jailbreak-cabal
bug-reports: https://github.com/NixOS/jailbreak-cabal/issues
author: Peter Simons, Jeremy Shaw, Joel Taylor, Kosyrev Serge, Nikolay Amiantov, aszlig
maintainer: [email protected]
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files: CHANGELOG.md
flag Cabal-syntax
description: Use the new Cabal-syntax package
default: True
manual: False
source-repository head
type: git
location: https://github.com/NixOS/jailbreak-cabal
executable jailbreak-cabal
main-is: Main.hs
build-depends: base < 5
-- This stunt is necessary to prevent the constraint solver from picking
-- Cabal-syntax >= 3.7 and Cabal < 3.7 at the same time.
if flag(Cabal-syntax)
build-depends: Cabal >= 3.7, Cabal-syntax >= 3.7
else
build-depends: Cabal >= 3 && < 3.7, Cabal-syntax < 3.7
default-language: Haskell2010