depot/pkgs/development/idris-modules/patricia.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
643 B
Nix

{ 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 ];
};
}