blob: d0f6975b9c45342fc681d77525b26be814cd4e44 (
plain)
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
|
{
lib,
buildDunePackage,
fetchFromGitHub,
}:
buildDunePackage (finalAttrs: {
pname = "trie";
version = "1.0.0";
src = fetchFromGitHub {
owner = "kandu";
repo = "trie";
tag = finalAttrs.version;
hash = "sha256-j7xp1svMeYIm+WScVe/B7w0jNjMtvkp9a1hLLLlO92g=";
};
meta = {
homepage = "https://github.com/kandu/trie/";
license = lib.licenses.mit;
description = "Strict impure trie tree";
maintainers = [ lib.maintainers.vbgl ];
};
})
|