summary refs log tree commit diff
path: root/pkgs/development/idris-modules/recursion_schemes.nix
blob: dab6913ee8bc233cb8f60d2467b61ec03ece45f3 (plain) (blame)
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
{ build-idris-package
, fetchFromGitHub
, free
, composition
, comonad
, bifunctors
, hezarfen
, lib
}:
build-idris-package  {
  name = "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 ];
  };
}