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

27 lines
577 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, contrib
, effects
, lib
}:
build-idris-package {
2018-09-18 08:38:59 +00:00
name = "hamt";
2018-03-16 11:40:17 +00:00
version = "2016-11-15";
2018-07-02 03:18:21 +00:00
idrisDeps = [ contrib effects ];
2018-03-16 11:40:17 +00:00
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 ];
};
}