name: ksystools version: 0.1.0.0 synopsis: System management tooling. description: For now, this is a playground for systems programming with the intent of building a set of libraries and tools for managing my Unix systems. homepage: https://github.com/kisom/ksystools#readme license: MIT license-file: LICENSE author: Kyle Isom maintainer: kyle@imap.cc copyright: MIT category: System build-type: Simple extra-source-files: README.rst cabal-version: >=1.10 library hs-source-dirs: src/lib exposed-modules: System.Packages.Apt , System.Data.Directory build-depends: base >= 4.7 && < 5 , directory >= 1.3 default-language: Haskell2010 -- TODO: disabled until more backend work is done. -- executable ksystools-exe -- hs-source-dirs: src/app -- main-is: Main.hs -- ghc-options: -threaded -rtsopts -with-rtsopts=-N -- build-depends: base -- , ksystools -- default-language: Haskell2010 -- test-suite ksystools-test -- type: exitcode-stdio-1.0 -- hs-source-dirs: src/test -- main-is: Spec.hs -- build-depends: base -- , ksystools -- ghc-options: -threaded -rtsopts -with-rtsopts=-N -- default-language: Haskell2010 source-repository head type: git location: https://github.com/kisom/ksystools