summary refs log blame commit diff
path: root/pkgs/development/idris-modules/patricia.nix
blob: a5cb0c6af00ed7687da75a9110ab87836ee07325 (plain) (tree)
1
2
3
4
5
6
7
8
9

                     

          

                      
                     

                         
                           







                                                                    

                                                                                                                  
                                                            

                                                

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