-rw-r--r-- xanadu.cabal
1 name: xanadu 2 version: 0.1.0.0 3 -- synopsis: 4 description: A standalone desktop metaphor for standalone window managers. 5 homepage: https://github.com/m-col/xanadu 6 license: BSD3 7 license-file: LICENSE 8 author: Matt Colligan 9 maintainer: mcol@posteo.net 10 copyright: 2021 Matt Colligan 11 category: Desktop 12 build-type: Simple 13 cabal-version: >=1.10 14 extra-source-files: README.rst 15 16 executable xanadu 17 hs-source-dirs: src 18 main-is: Main.hs 19 other-modules: Icons 20 , Style 21 , Window 22 default-language: Haskell2010 23 build-depends: base >= 4.7 && < 5 24 , directory 25 , filepath 26 , gi-gdk 27 , gi-gdkpixbuf 28 , gi-gio 29 , gi-gtk 30 , gi-gtk-layer-shell 31 , haskell-gi-base >= 0.26.0 32 , text 33 , transformers 34