blob: 9fee3953018eec17226ec9a5a0cf092a486daff2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
build-idris-package,
fetchFromGitHub,
free,
composition,
comonad,
bifunctors,
hezarfen,
lib,
}:
build-idris-package {
pname = "recursion_schemes";
version = "2018-01-19";
idrisDeps = [
free
composition
comonad
bifunctors
hezarfen
];
src = fetchFromGitHub {
owner = "vmchale";
repo = "recursion_schemes";
rev = "6bcbe0da561f461e7a05e29965a18ec9f87f8d82";
sha256 = "0rbx0yqa0fb7h7qfsvqvirc5q85z51rcwbivn6351jgn3a0inmhf";
};
meta = {
description = "Recursion schemes for Idris";
homepage = "https://github.com/vmchale/recursion_schemes";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.brainrape ];
};
}
|