├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── Setup.hs ├── app └── Main.hs ├── bhoogle.cabal ├── stack.yaml └── ui.png /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrevdm/bhoogle/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work/ 2 | *#*.hs# 3 | dist-newstyle 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrevdm/bhoogle/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrevdm/bhoogle/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrevdm/bhoogle/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrevdm/bhoogle/HEAD/app/Main.hs -------------------------------------------------------------------------------- /bhoogle.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrevdm/bhoogle/HEAD/bhoogle.cabal -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-23.18 2 | 3 | packages: 4 | - . 5 | -------------------------------------------------------------------------------- /ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrevdm/bhoogle/HEAD/ui.png --------------------------------------------------------------------------------