File: Version.hs

package info (click to toggle)
haskell-hopenpgp 2.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,028 kB
  • sloc: haskell: 6,478; sh: 21; makefile: 6
file content (13 lines) | stat: -rw-r--r-- 367 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
-- Version.hs: static hOpenPGP version string
-- Copyright © 2024  Clint Adams
-- This software is released under the terms of the Expat license.
-- (See the LICENSE file).
module Codec.Encryption.OpenPGP.Version
  ( version
  ) where

import Data.Version (showVersion)
import qualified Paths_hOpenPGP as Paths

version :: String
version = showVersion Paths.version