copyright: fix REUSE symantic-base-0.2.0.20210831
authorJulien Moutinho <julm+symantic-base@sourcephile.fr>
Tue, 31 Aug 2021 17:02:45 +0000 (19:02 +0200)
committerJulien Moutinho <julm+symantic-base@sourcephile.fr>
Tue, 31 Aug 2021 17:36:19 +0000 (19:36 +0200)
.reuse/dep5
default.nix
symantic-base.cabal

index 5cf0a2d5ba9a439257daa5f917cccabef1754c78..1e2516a6cef1e537fb16058a4a5e9a54dfa58192 100644 (file)
@@ -1,12 +1,12 @@
 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
-Upstream-Name: symantic-parser
-Upstream-Contact: Julien Moutinho <julm+symantic-parser@sourcephile.fr>
-Source: https://git.hut.sourcephile.fr/~julm/symantic-parser
+Upstream-Name: symantic-base
+Upstream-Contact: Julien Moutinho <julm+symantic-base@sourcephile.fr>
+Source: https://git.hut.sourcephile.fr/~julm/symantic-base
 
 Files: *.nix *.lock cabal.project *.cabal .envrc .gitignore .hlint.yaml Makefile
-Copyright: 2020-2021 Julien Moutinho <julm+symantic-parser@sourcephile.fr>
+Copyright: Julien Moutinho <julm+symantic-base@sourcephile.fr>
 License: CC0-1.0
 
 Files: src/*
-Copyright: 2020-2021 Julien Moutinho <julm+symantic-parser@sourcephile.fr>
+Copyright: Julien Moutinho <julm+symantic-base@sourcephile.fr>
 License: AGPL-3.0-or-later
index d76e973af8bc5e8812a89a2a61d7946ac1fb7e72..068dec09a3d7ed3b2d9ea44db178130fa14b7f4d 100644 (file)
@@ -1,4 +1,5 @@
 { pkgs ? import <nixpkgs> {}
+, inputs ? {}
 , ghc ? null
 , withHoogle ? false
 }:
@@ -8,7 +9,7 @@ let
     then pkgs.haskellPackages
     else pkgs.haskell.packages.${ghc};
   hs = haskellPackages.extend (with pkgs.haskell.lib; hself: hsuper: {
-      symantic-base = buildFromSdist (hself.callCabal2nix "symantic-base" ./. {});
+    symantic-base = buildFromSdist (hself.callCabal2nix "symantic-base" ./. {});
   });
 in hs.symantic-base // {
   shell = hs.shellFor {
index 53076ad9fc1bbdf727086997a153c95c1ccbbab6..2e00d24d6243e2ad145257fe1fbc0b2f26874779 100644 (file)
@@ -1,13 +1,19 @@
 cabal-version: 3.0
+name: symantic-base
+maintainer: mailto:~julm/symantic-base@todo.hut.sourcephile.fr
+bug-reports: https://todo.hut.sourcephile.fr/~julm/symantic-base
+homepage: https://git.hut.sourcephile.fr/~julm/symantic-base
+author: Julien Moutinho <julm+symantic-base@sourcephile.fr>
+copyright: Julien Moutinho <julm+symantic-base@sourcephile.fr>
 license: AGPL-3.0-or-later
 license-file: LICENSES/AGPL-3.0-or-later.txt
-name: symantic-base
 -- PVP:  +-+------- breaking API changes
 --       | | +----- non-breaking API additions
 --       | | | +--- code changes with no API change
-version: 0.2.0.20210731
+version: 0.2.0.20210831
+stability: experimental
 category: Data Structures
-synopsis: Commonly useful symantics for Embedded Domain-Specific Languages (EDSL)
+synopsis: Basic symantics combinators for Embedded Domain-Specific Languages (EDSL)
 description:
   This is a work-in-progress collection of basic tagless-final combinators,
   along with some advanced utilities to exploit them.
@@ -43,14 +49,9 @@ description:
   * @Symantic.Fixity@
     gathers utilities for parsing or viewing
     infix, prefix and postfix combinators.
-stability: experimental
-author: Julien Moutinho <julm+symantic-base@sourcephile.fr>
-maintainer: Julien Moutinho <julm+symantic-base@sourcephile.fr>
-bug-reports: https://mails.sourcephile.fr/inbox/symantic-base
-copyright: Julien Moutinho <julm+symantic-base@sourcephile.fr>
-
 build-type: Simple
 tested-with: GHC==8.10.4
+extra-doc-files:
 extra-source-files:
   cabal.project
   default.nix
@@ -62,7 +63,7 @@ extra-tmp-files:
 
 source-repository head
   type: git
-  location: git://git.sourcephile.fr/haskell/symantic-base
+  location: https://git.hut.sourcephile.fr/~julm/symantic-base
 
 library
   hs-source-dirs: src