summary refs log tree commit diff
path: root/pkgs/development/idris-modules/hamt.nix
blob: 7a2d0d77c8322f1c937c6c7f1f84e18f28327ff3 (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
, prelude
, contrib
, effects
, lib
, idris
}:
build-idris-package  {
  name = "idris-hamt";
  version = "2016-11-15";

  idrisDeps = [ prelude contrib effects ];

  src = fetchFromGitHub {
    owner = "bamboo";
    repo = "idris-hamt";
    rev = "e70f3eedddb5ccafea8e386762b8421ba63c495a";
    sha256 = "0m2yjr20dxkfmn3nzc68l6vh0rdaw6b637yijwl4c83b5xiac1mi";
  };

  meta = {
    description = "Idris Hash Array Mapped Trie";
    homepage = https://github.com/bamboo/idris-hamt;
    license = lib.licenses.bsd3;
    maintainers = [ lib.maintainers.brainrape ];
    inherit (idris.meta) platforms;
  };
}