fixed

Pure Haskell large fixed-width integers.
git clone git://git.ppad.tech/fixed.git
Log | Files | Refs | README | LICENSE

commit 60d6fec58a24e5bf8cf3a3a1602ad670cd9078b9
parent 3c288e7010bea2f99c74919b39999713e06f9619
Author: Jared Tobin <jared@jtobin.io>
Date:   Wed, 22 Jan 2025 13:32:35 +0400

meta: s/fw/fixed

Diffstat:
Mflake.nix | 4++--
Appad-fixed.cabal | 45+++++++++++++++++++++++++++++++++++++++++++++
Dppad-fw.cabal | 45---------------------------------------------
3 files changed, 47 insertions(+), 47 deletions(-)

diff --git a/flake.nix b/flake.nix @@ -1,5 +1,5 @@ { - description = "Fixed-width integer types"; + description = "Fixed-width integer types."; inputs = { ppad-nixpkgs = { @@ -14,7 +14,7 @@ outputs = { self, nixpkgs, flake-utils, ppad-nixpkgs }: flake-utils.lib.eachDefaultSystem (system: let - lib = "ppad-fw"; + lib = "ppad-fixed"; pkgs = import nixpkgs { inherit system; }; hlib = pkgs.haskell.lib; diff --git a/ppad-fixed.cabal b/ppad-fixed.cabal @@ -0,0 +1,45 @@ +cabal-version: 3.0 +name: ppad-fixed +version: 0.1.0 +synopsis: Fixed-width integers. +license: MIT +license-file: LICENSE +author: Jared Tobin +maintainer: jared@ppad.tech +category: Data +build-type: Simple +tested-with: GHC == { 9.8.1 } +extra-doc-files: CHANGELOG +description: + Fixed-width integer types and operations. + +source-repository head + type: git + location: git.ppad.tech/fixed.git + +library + default-language: Haskell2010 + hs-source-dirs: lib + ghc-options: + -Wall + exposed-modules: + Data.Word.Extended + build-depends: + base >= 4.9 && < 5 + +test-suite fixed-tests + type: exitcode-stdio-1.0 + default-language: Haskell2010 + hs-source-dirs: test + main-is: Main.hs + + ghc-options: + -rtsopts -Wall -O2 + + build-depends: + base + , bytestring + , ppad-fixed + , tasty + , tasty-quickcheck + diff --git a/ppad-fw.cabal b/ppad-fw.cabal @@ -1,45 +0,0 @@ -cabal-version: 3.0 -name: ppad-fw -version: 0.1.0 -synopsis: Fixed-width integers -license: MIT -license-file: LICENSE -author: Jared Tobin -maintainer: jared@ppad.tech -category: Data -build-type: Simple -tested-with: GHC == { 9.8.1 } -extra-doc-files: CHANGELOG -description: - Fixed-width integer types and operations. - -source-repository head - type: git - location: git.ppad.tech/sha256.git - -library - default-language: Haskell2010 - hs-source-dirs: lib - ghc-options: - -Wall - exposed-modules: - Data.Word.Extended - build-depends: - base >= 4.9 && < 5 - -test-suite fw-tests - type: exitcode-stdio-1.0 - default-language: Haskell2010 - hs-source-dirs: test - main-is: Main.hs - - ghc-options: - -rtsopts -Wall -O2 - - build-depends: - base - , bytestring - , ppad-fw - , tasty - , tasty-quickcheck -