Skip to content

Commit bcc68b4

Browse files
author
IOHK
committedMay 25, 2024
Automatic Update
1 parent c91343e commit bcc68b4

File tree

48 files changed

+2134
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+2134
-0
lines changed
 

‎default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -2112,6 +2112,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
21122112
"applicable" = import ./nix/applicable.nix;
21132113
"applicative-extras" = import ./nix/applicative-extras.nix;
21142114
"applicative-fail" = import ./nix/applicative-fail.nix;
2115+
"applicative-logic" = import ./nix/applicative-logic.nix;
21152116
"applicative-numbers" = import ./nix/applicative-numbers.nix;
21162117
"applicative-parsec" = import ./nix/applicative-parsec.nix;
21172118
"applicative-quoters" = import ./nix/applicative-quoters.nix;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "3.0";
14+
identifier = { name = "applicative-logic"; version = "0.1.0.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "lyesveasp@openbastille.org";
18+
author = "Håkon Robbestad Gylterud";
19+
homepage = "http://hakon.gylterud.net/programming/applicative-logic";
20+
url = "";
21+
synopsis = "Generalized logic operations for Applicative and Alternative functors";
22+
description = "";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
28+
buildable = true;
29+
};
30+
};
31+
}

0 commit comments

Comments
 (0)
Please sign in to comment.