diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-06-24 17:20:33 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-06-28 03:24:59 -0400 |
commit | 16b9100c9ef6b34b88a52b3b9e663dd40abd028f (patch) | |
tree | edad3c5026afd450a2dedfb2bf51f57e07c9d96a /libraries | |
parent | c006ac0d1454119f0b456a00ff2416831c955e99 (diff) | |
download | haskell-16b9100c9ef6b34b88a52b3b9e663dd40abd028f.tar.gz |
integer-gmp: Fix cabal file
Evidently fields may not come after sections in a cabal file.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/integer-gmp/integer-gmp.cabal | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libraries/integer-gmp/integer-gmp.cabal b/libraries/integer-gmp/integer-gmp.cabal index adb05116f5..ef4ee4773a 100644 --- a/libraries/integer-gmp/integer-gmp.cabal +++ b/libraries/integer-gmp/integer-gmp.cabal @@ -12,10 +12,6 @@ build-type: Simple homepage: https://www.haskell.org/ghc/ bug-reports: https://gitlab.haskell.org/ghc/ghc/issues/new -source-repository head - type: git - location: https://gitlab.haskell.org/ghc/ghc.git - subdir: libraries/integer-gmp description: This package used to provide an implementation of the standard 'Integer' @@ -27,6 +23,11 @@ description: Its purpose is to provide backward compatibility for codes directly depending on the `integer-gmp` package. +source-repository head + type: git + location: https://gitlab.haskell.org/ghc/ghc.git + subdir: libraries/integer-gmp + library default-language: Haskell2010 hs-source-dirs: src/ |