Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-advance
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
package-sets
horizon-advance
Commits
60dcc73d
Commit
60dcc73d
authored
1 year ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
recursion-schemes: init at 5.2.2.4
parent
34f5061c
Branches
Branches containing commit
1 merge request
!2
add some plutus dependencies
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
horizon.dhall
+1
-0
1 addition, 0 deletions
horizon.dhall
horizon.lock
+4
-0
4 additions, 0 deletions
horizon.lock
overlay.nix
+2
-0
2 additions, 0 deletions
overlay.nix
pkgs/recursion-schemes.nix
+30
-0
30 additions, 0 deletions
pkgs/recursion-schemes.nix
with
37 additions
and
0 deletions
horizon.dhall
+
1
−
0
View file @
60dcc73d
...
...
@@ -4,6 +4,7 @@ let H =
let packages =
{ formatting = H.callHackage "formatting" "7.2.0"
, polysemy = H.callHackage "polysemy" "1.9.1.0"
, recursion-schemes = H.callHackage "recursion-schemes" "5.2.2.4"
, type-errors = H.callHackage "type-errors" "0.2.0.2"
, unagi-chan = H.callHackage "unagi-chan" "0.4.1.4"
}
...
...
This diff is collapsed.
Click to expand it.
horizon.lock
+
4
−
0
View file @
60dcc73d
...
...
@@ -6,6 +6,10 @@
, mapValue =
"b134fcf0c950011e7c4bb8c074b99f70b11d26de8db9fa05db498008dae61cdb"
}
, { mapKey = "recursion-schemes"
, mapValue =
"4fd1545bb00d723c31149fa5266684bf89be3e3765c0c6229b80d18ef8529ea4"
}
, { mapKey = "type-errors"
, mapValue =
"9a6f7b5c1c3b6f5641d84da2df9661c507251df438da179a9926941422e31bc1"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
60dcc73d
...
...
@@ -5,6 +5,8 @@ final: prev: with pkgs.haskell.lib; {
polysemy
=
final
.
callPackage
(
./pkgs/polysemy.nix
)
{
};
recursion-schemes
=
final
.
callPackage
(
./pkgs/recursion-schemes.nix
)
{
};
type-errors
=
final
.
callPackage
(
./pkgs/type-errors.nix
)
{
};
unagi-chan
=
final
.
callPackage
(
./pkgs/unagi-chan.nix
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/recursion-schemes.nix
0 → 100644
+
30
−
0
View file @
60dcc73d
{
mkDerivation
,
HUnit
,
base
,
base-orphans
,
comonad
,
containers
,
data-fix
,
free
,
lib
,
template-haskell
,
th-abstraction
,
transformers
}:
mkDerivation
{
pname
=
"recursion-schemes"
;
version
=
"5.2.2.4"
;
sha256
=
"0c151bc90a9a28bab2beced0e450103e102f754ddfebb8f924fc8a3b11c4db43"
;
revision
=
"2"
;
editedCabalFile
=
"1617jz77d4f2hf54jfz30zbf18rcgl6h0nzn3rcl0gjxjavf5aq6"
;
isLibrary
=
true
;
isExecutable
=
false
;
enableSeparateDataOutput
=
false
;
libraryHaskellDepends
=
[
base
base-orphans
comonad
containers
data-fix
free
template-haskell
th-abstraction
transformers
];
testHaskellDepends
=
[
base
HUnit
template-haskell
transformers
];
enableLibraryProfiling
=
true
;
enableExecutableProfiling
=
true
;
doHaddock
=
false
;
jailbreak
=
true
;
doCheck
=
false
;
doBenchmark
=
false
;
hyperlinkSource
=
false
;
homepage
=
"http://github.com/ekmett/recursion-schemes/"
;
description
=
"Representing common recursion patterns as higher-order functions"
;
license
=
lib
.
licenses
.
bsd2
;
broken
=
false
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment