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

  idrisDeps = [ prelude contrib ];

  src = fetchFromGitHub {
    owner = "sellout";
    repo = "Iaia";
    rev = "dce68d2b63a26dad7c94459773eae2d42686fa05";
    sha256 = "0209fhv8x3sw6ijrwc8a85pch97z821ygaz78va3l274xam4l659";
  };

  meta = {
    description = "Recursion scheme library for Idris";
    homepage = https://github.com/sellout/Iaia;
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.brainrape ];
    inherit (idris.meta) platforms;
  };
}