summary refs log tree commit diff
path: root/pkgs/development/idris-modules/free.nix
blob: cc0820d3c646345157a0f62e4222f3030dd988f5 (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
{ build-idris-package
, fetchFromGitHub
, prelude
, lib
, idris
}:
build-idris-package  {
  name = "free";
  version = "2017-07-03";

  idrisDeps = [ prelude ];

  src = fetchFromGitHub {
    owner = "idris-hackers";
    repo = "idris-free";
    rev = "919950fb6a9d97c139c2d102402fec094a99c397";
    sha256 = "1n4daf1acjkd73an4m31yp9g616crjb7h5z02f1gj29wm3dbx5s7";
  };

  meta = {
    description = "Free Monads and useful constructions to work with them";
    homepage = https://github.com/idris-hackers/idris-free;
    license = lib.licenses.bsd2;
    maintainers = [ lib.maintainers.brainrape ];
    inherit (idris.meta) platforms;
  };
}