blob: a5cb0c6af00ed7687da75a9110ab87836ee07325 (
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 {
pname = "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 ];
};
}
|