├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── src └── System │ └── SysInfo.hsc ├── stack.yaml ├── sysinfo.cabal └── test └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psibi/sysinfo/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psibi/sysinfo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psibi/sysinfo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psibi/sysinfo/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /src/System/SysInfo.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psibi/sysinfo/HEAD/src/System/SysInfo.hsc -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-8.12 2 | 3 | packages: 4 | - '.' 5 | -------------------------------------------------------------------------------- /sysinfo.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psibi/sysinfo/HEAD/sysinfo.cabal -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psibi/sysinfo/HEAD/test/Spec.hs --------------------------------------------------------------------------------