2017-11-21 14:59:38 -08:00
|
|
|
{ build-idris-package
|
2018-07-01 20:18:21 -07:00
|
|
|
, fetchFromGitHub
|
2017-11-21 14:59:38 -08:00
|
|
|
, effects
|
|
|
|
, lib
|
|
|
|
}:
|
|
|
|
build-idris-package {
|
2017-11-06 10:18:59 -08:00
|
|
|
name = "specdris";
|
2018-03-16 04:40:17 -07:00
|
|
|
version = "2018-01-23";
|
2017-11-21 14:59:38 -08:00
|
|
|
|
2018-07-01 20:18:21 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pheymann";
|
|
|
|
repo = "specdris";
|
2018-03-16 04:40:17 -07:00
|
|
|
rev = "625f88f5e118e53f30bcf5e5f3dcf48eb268ac21";
|
|
|
|
sha256 = "1gc717xf4i7z75aqazy5wqm7b1dqfyx5pprdypxz1h3980m67fsa";
|
2017-11-21 14:59:38 -08:00
|
|
|
};
|
|
|
|
|
2018-07-01 20:18:21 -07:00
|
|
|
idrisDeps = [ effects ];
|
2017-11-21 14:59:38 -08:00
|
|
|
|
2018-03-16 04:40:17 -07:00
|
|
|
# tests use a different ipkg and directory structure
|
2017-11-06 10:18:59 -08:00
|
|
|
doCheck = false;
|
2017-11-21 14:59:38 -08:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A testing library for Idris";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/pheymann/specdris";
|
2017-11-21 14:59:38 -08:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|