nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 fetchFromGitHub,
5}:
6
7buildDunePackage (finalAttrs: {
8 pname = "trie";
9 version = "1.0.0";
10
11 src = fetchFromGitHub {
12 owner = "kandu";
13 repo = "trie";
14 tag = finalAttrs.version;
15 hash = "sha256-j7xp1svMeYIm+WScVe/B7w0jNjMtvkp9a1hLLLlO92g=";
16 };
17
18 meta = {
19 homepage = "https://github.com/kandu/trie/";
20 license = lib.licenses.mit;
21 description = "Strict impure trie tree";
22 maintainers = [ lib.maintainers.vbgl ];
23 };
24
25})