nixpkgs/pkgs/development/idris-modules/patricia.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
644 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, specdris
, lib
}:
build-idris-package {
2022-02-14 22:08:24 +00:00
pname = "patricia";
2018-03-16 11:40:17 +00:00
version = "2017-10-27";
2018-07-02 03:18:21 +00:00
idrisDeps = [ specdris ];
2018-03-16 11:40:17 +00:00
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";
2018-03-16 11:40:17 +00:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}