aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-03-09 18:14:41 +0100
committerYann Herklotz <git@yannherklotz.com>2022-03-09 18:14:41 +0100
commit425e96636c1311b52a9e72c004cd1e74deb37bf0 (patch)
tree8c64319be79b4870c7e6e5cbde7f9b821c9f26db
parentd64f3b5b8b80adae0bc8e1b4091b73c4ce9f1666 (diff)
downloadchoc-425e96636c1311b52a9e72c004cd1e74deb37bf0.tar.gz
choc-425e96636c1311b52a9e72c004cd1e74deb37bf0.zip
Replace generic info by personal info
-rw-r--r--LICENSE2
-rw-r--r--app/Main.hs2
-rw-r--r--package.yaml19
-rw-r--r--src/Choc.hs (renamed from src/Lib.hs)2
4 files changed, 10 insertions, 15 deletions
diff --git a/LICENSE b/LICENSE
index 342c588..9a49f80 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright Author name here (c) 2022
+Copyright Yann Herklotz (c) 2022
All rights reserved.
diff --git a/app/Main.hs b/app/Main.hs
index de1c1ab..a6ac9e8 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -1,6 +1,6 @@
module Main where
-import Lib
+import Choc
main :: IO ()
main = someFunc
diff --git a/package.yaml b/package.yaml
index f031d6e..23a31a7 100644
--- a/package.yaml
+++ b/package.yaml
@@ -1,23 +1,18 @@
name: choc
version: 0.1.0.0
-github: "githubuser/choc"
+git: "https://sr.ht/~ymherklotz/choc"
license: BSD3
-author: "Author name here"
-maintainer: "example@example.com"
-copyright: "2022 Author name here"
+author: "Yann Herklotz"
+maintainer: "git@yannherklotz.com"
+copyright: "2022 Yann Herklotz"
extra-source-files:
- README.md
- ChangeLog.md
-# Metadata used when publishing your package
-# synopsis: Short description of your package
-# category: Web
-
-# To avoid duplicated efforts in documentation and dealing with the
-# complications of embedding Haddock markup inside cabal files, it is
-# common to point users to the README.md file.
-description: Please see the README on GitHub at <https://github.com/githubuser/choc#readme>
+synopsis: An implementation of the Calculus of Construction.
+category: Algebra
+description: Please see the README at <https://sr.ht/~ymherklotz/choc>
dependencies:
- base >= 4.7 && < 5
diff --git a/src/Lib.hs b/src/Choc.hs
index d36ff27..1d37ddc 100644
--- a/src/Lib.hs
+++ b/src/Choc.hs
@@ -1,4 +1,4 @@
-module Lib
+module Choc
( someFunc
) where