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

26 lines
572 B
Nix
Raw Permalink Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
name = "pfds";
version = "2017-09-25";
2018-07-02 03:18:21 +00:00
idrisDeps = [ contrib ];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "timjb";
repo = "idris-pfds";
rev = "9ba39348adc45388eccf6463855f42b81333620a";
sha256 = "0jbrwdpzg5hgmkfk2kj5y8lgaynl79h48qdvkl1glypfh392w35f";
};
meta = {
description = "Purely functional data structures in Idris";
homepage = "https://github.com/timjb/idris-pfds";
2018-03-16 11:40:17 +00:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}