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

28 lines
586 B
Nix
Raw Normal View History

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