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
, lib
, idris
}:
build-idris-package {
name = "mapping";
version = "2018-02-27";
idrisDeps = [ prelude ];
src = fetchFromGitHub {
owner = "zaoqi";
repo = "Mapping.idr";
rev = "4f226933d4491b8fd09f9d9a7b862c0cc646b936";
sha256 = "1skkb7jz2lv0xg4n5m0vd9xddg3x01459dwx1jxnpc7ifask4cda";
};
meta = {
description = "Idris mapping library";
homepage = https://github.com/zaoqi/Mapping.idr;
license = lib.licenses.agpl3;
maintainers = [ lib.maintainers.brainrape ];
inherit (idris.meta) platforms;
};
}