idrisPackages: add packages

This commit is contained in:
Márton Boros
2018-03-20 07:16:21 +01:00
parent cf65d477fd
commit 23ee7c9d8d
81 changed files with 2422 additions and 57 deletions
+28
View File
@@ -0,0 +1,28 @@
{ build-idris-package
, fetchFromGitHub
, prelude
, contrib
, lib
, idris
}:
build-idris-package {
name = "pfds";
version = "2017-09-25";
idrisDeps = [ prelude contrib ];
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;
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
inherit (idris.meta) platforms;
};
}