summaryrefslogtreecommitdiff
path: root/walint-cli/Version.hs
blob: 1748512b79f90726139ee0507dee1241ae2a04e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{-# LANGUAGE TemplateHaskell #-}


module Version ( version ) where

import           Universum

import qualified Language.Haskell.TH as TH
import           System.Process      (readProcess)

version :: String
version = "walint generic 2022 (" <>
    $(do
        hash <- liftIO $ catchAny (readProcess "git" ["rev-parse", "HEAD"] "")
                         (\_ -> pure "[unknown]")
        pure . TH.LitE . TH.StringL $ take 40 hash) ++
    ")"