idrisPackages: add packages
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
{ build-idris-package
|
||||
, fetchFromGitHub
|
||||
, prelude
|
||||
, contrib
|
||||
, lib
|
||||
, idris
|
||||
}:
|
||||
build-idris-package {
|
||||
name = "tap";
|
||||
version = "2017-04-08";
|
||||
|
||||
idrisDeps = [ prelude contrib ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ostera";
|
||||
repo = "tap-idris";
|
||||
rev = "0d019333e1883c1d60e151af1acb02e2b531e72f";
|
||||
sha256 = "0fhlmmivq9xv89r7plrnhmvay1j7bapz3wh7y8lygwvcrllh9zxs";
|
||||
};
|
||||
|
||||
postUnpack = ''
|
||||
rm source/Draft.ipkg
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A simple TAP producer and consumer/reporter for Idris";
|
||||
homepage = https://github.com/ostera/tap-idris;
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = [ lib.maintainers.brainrape ];
|
||||
inherit (idris.meta) platforms;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user