nixpkgs/pkgs/development/idris-modules/specdris.nix

31 lines
620 B
Nix
Raw Normal View History

2017-11-21 22:59:38 +00:00
{ build-idris-package
, fetchgit
, prelude
, base
, effects
, lib
, idris
}:
build-idris-package {
name = "specdris";
2018-03-16 11:40:17 +00:00
version = "2018-01-23";
2017-11-21 22:59:38 +00:00
src = fetchgit {
url = "https://github.com/pheymann/specdris";
2018-03-16 11:40:17 +00:00
rev = "625f88f5e118e53f30bcf5e5f3dcf48eb268ac21";
sha256 = "1gc717xf4i7z75aqazy5wqm7b1dqfyx5pprdypxz1h3980m67fsa";
2017-11-21 22:59:38 +00:00
};
idrisDeps = [ prelude base effects idris ];
2017-11-21 22:59:38 +00:00
2018-03-16 11:40:17 +00:00
# tests use a different ipkg and directory structure
doCheck = false;
2017-11-21 22:59:38 +00:00
meta = {
description = "A testing library for Idris";
homepage = https://github.com/pheymann/specdris;
license = lib.licenses.mit;
};
}