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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
589 B
Nix
Raw Normal View History

2017-11-21 22:59:38 +00:00
{ build-idris-package
2018-07-02 03:18:21 +00:00
, fetchFromGitHub
2017-11-21 22:59:38 +00:00
, effects
, lib
}:
build-idris-package {
2022-02-14 22:08:24 +00:00
pname = "specdris";
2018-03-16 11:40:17 +00:00
version = "2018-01-23";
2017-11-21 22:59:38 +00:00
2018-07-02 03:18:21 +00:00
src = fetchFromGitHub {
owner = "pheymann";
repo = "specdris";
2018-03-16 11:40:17 +00:00
rev = "625f88f5e118e53f30bcf5e5f3dcf48eb268ac21";
sha256 = "1gc717xf4i7z75aqazy5wqm7b1dqfyx5pprdypxz1h3980m67fsa";
2017-11-21 22:59:38 +00:00
};
2018-07-02 03:18:21 +00:00
idrisDeps = [ effects ];
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";
2017-11-21 22:59:38 +00:00
license = lib.licenses.mit;
};
}