darcsden :: dbp -> housetab -> blob

a small webapp to share collective expenses in a house - single account version - note, this version is now quite out of date and missing a lot of features of the multi-account version. There isn't really any advantage in using it.

root / Setup.hs

1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env runghc

module Main where

import Distribution.Simple
import Distribution.Simple.Program

trhsxProgram = simpleProgram "trhsx"

main :: IO ()
main = defaultMainWithHooks simpleUserHooks {
         hookedPrograms = [trhsxProgram]
       }