1{
2 build-idris-package,
3 fetchFromGitHub,
4 specdris,
5 lib,
6}:
7build-idris-package {
8 pname = "patricia";
9 version = "2017-10-27";
10
11 idrisDeps = [ specdris ];
12
13 src = fetchFromGitHub {
14 owner = "ChShersh";
15 repo = "idris-patricia";
16 rev = "24724e6d0564f2f813d0d0a58f5c5db9afe35313";
17 sha256 = "093q3qjmr93wv8pqwk0zfm3hzf14c235k9c9ip53rhg6yzcm0yqz";
18 };
19
20 meta = {
21 description = "Immutable map from integer keys to values based on patricia tree. Basically persistent array";
22 homepage = "https://github.com/ChShersh/idris-patricia";
23 license = lib.licenses.mit;
24 maintainers = [ lib.maintainers.brainrape ];
25 };
26}