mirror of
https://github.com/coot/free-category.git
synced 2024-11-23 09:55:43 +03:00
62d0bbe4fe
* Initial LoginStateMachine implementation * Nicer interface * Lifting instance for (->) and Identity, liftKleisli function * Added Control.Category.Lifting to free-algebras * Reoder Lifting module * Fixed haddoc documentation * examples.cabal - base version * reconfigure circle-ci * Fixed error in GHC-8.6.1
21 lines
736 B
Nix
21 lines
736 B
Nix
{ mkDerivation, base, constraints, containers, data-fix, dlist
|
|
, free, groups, hedgehog, kan-extensions, mtl, natural-numbers
|
|
, stdenv, transformers
|
|
}:
|
|
mkDerivation {
|
|
pname = "free-algebras";
|
|
version = "0.0.7.0";
|
|
sha256 = "f0c18b857087ec7ec0321f729562174c9a9f02172806e2fba7c8989fdd7631aa";
|
|
libraryHaskellDepends = [
|
|
base constraints containers data-fix dlist free groups
|
|
kan-extensions mtl natural-numbers transformers
|
|
];
|
|
testHaskellDepends = [
|
|
base constraints containers data-fix dlist free groups hedgehog
|
|
kan-extensions mtl natural-numbers transformers
|
|
];
|
|
homepage = "https://github.com/coot/free-algebras#readme";
|
|
description = "Free algebras in Haskell";
|
|
license = stdenv.lib.licenses.mpl20;
|
|
}
|