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
{ pkgs ? import <nixpkgs> {}
+, inputs ? {}
, ghc ? null
, withHoogle ? false
}:
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 {
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.
* @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
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