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
@@ -0,0 +1,28 @@
{ build-idris-package
, fetchFromGitHub
, prelude
, hezarfen
, lib
, idris
}:
build-idris-package {
name = "composition";
version = "2017-11-12";
idrisDeps = [ prelude hezarfen ];
src = fetchFromGitHub {
owner = "vmchale";
repo = "composition";
rev = "8f05e8db750793a9992b315dc0a2c327b837ec8b";
sha256 = "05424xzxx6f3ig0ravib15nr34nqvaq8spcj6b1512raqrvkkay8";
};
meta = {
description = "Composition extras for Idris";
homepage = https://github.com/vmchale/composition;
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.brainrape ];
inherit (idris.meta) platforms;
};
}