about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-01 00:46:10 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-01 00:46:10 +0200
commitf4939c8ef0d0111ea9094ef60186db9ca45ac356 (patch)
tree24ab817e8e97608d82e46209c2668e895461bdc1
parentInitial Commit (diff)
downloadsky-info-f4939c8ef0d0111ea9094ef60186db9ca45ac356.tar.gz
sky-info-f4939c8ef0d0111ea9094ef60186db9ca45ac356.tar.bz2
sky-info-f4939c8ef0d0111ea9094ef60186db9ca45ac356.zip
Add astro dependency
-rw-r--r--package.yaml1
-rw-r--r--sky-info.cabal9
2 files changed, 7 insertions, 3 deletions
diff --git a/package.yaml b/package.yaml
index cec3772..464f9bc 100644
--- a/package.yaml
+++ b/package.yaml
@@ -21,6 +21,7 @@ description:         Please see the README on GitHub at <https://github.com/gith
 
 dependencies:
 - base >= 4.7 && < 5
+- astro
 
 library:
   source-dirs: src
diff --git a/sky-info.cabal b/sky-info.cabal
index 45d5baf..2bc48cc 100644
--- a/sky-info.cabal
+++ b/sky-info.cabal
@@ -31,7 +31,8 @@ library
   hs-source-dirs:
       src
   build-depends:
-      base >=4.7 && <5
+      astro
+    , base >=4.7 && <5
   default-language: Haskell2010
 
 executable sky-info-exe
@@ -42,7 +43,8 @@ executable sky-info-exe
       app
   ghc-options: -threaded -rtsopts -with-rtsopts=-N
   build-depends:
-      base >=4.7 && <5
+      astro
+    , base >=4.7 && <5
     , sky-info
   default-language: Haskell2010
 
@@ -55,6 +57,7 @@ test-suite sky-info-test
       test
   ghc-options: -threaded -rtsopts -with-rtsopts=-N
   build-depends:
-      base >=4.7 && <5
+      astro
+    , base >=4.7 && <5
     , sky-info
   default-language: Haskell2010