summary refs log tree commit diff
path: root/pkgs/development/idris-modules/patricia.nix
blob: 586c33837d65ef17f5ba63fa5987a8d57381939e (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
{ build-idris-package
, fetchFromGitHub
, specdris
, lib
}:
build-idris-package  {
  name = "patricia";
  version = "2017-10-27";

  idrisDeps = [ specdris ];

  src = fetchFromGitHub {
    owner = "ChShersh";
    repo = "idris-patricia";
    rev = "24724e6d0564f2f813d0d0a58f5c5db9afe35313";
    sha256 = "093q3qjmr93wv8pqwk0zfm3hzf14c235k9c9ip53rhg6yzcm0yqz";
  };

  meta = {
    description = "Immutable map from integer keys to values based on patricia tree. Basically persistent array.";
    homepage = "https://github.com/ChShersh/idris-patricia";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.brainrape ];
  };
}