My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/hamt.nix

26 lines
580 B

{ build-idris-package
, fetchFromGitHub
, contrib
, effects
, lib
}:
build-idris-package {
pname = "hamt";
version = "2016-11-15";
idrisDeps = [ contrib effects ];
src = fetchFromGitHub {
owner = "bamboo";
repo = "idris-hamt";
rev = "e70f3eedddb5ccafea8e386762b8421ba63c495a";
sha256 = "0m2yjr20dxkfmn3nzc68l6vh0rdaw6b637yijwl4c83b5xiac1mi";
};
meta = {
description = "Idris Hash Array Mapped Trie";
homepage = "https://github.com/bamboo/idris-hamt";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.brainrape ];
};
}