summary refs log tree commit diff
path: root/pkgs/development/idris-modules/specdris.nix
blob: 06982a0b2bad6a5dd10e4ca0cc76e81ee3086e57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ build-idris-package
, fetchFromGitHub
, effects
, lib
}:
build-idris-package {
  name = "specdris";
  version = "2018-01-23";

  src = fetchFromGitHub {
    owner = "pheymann";
    repo = "specdris";
    rev = "625f88f5e118e53f30bcf5e5f3dcf48eb268ac21";
    sha256 = "1gc717xf4i7z75aqazy5wqm7b1dqfyx5pprdypxz1h3980m67fsa";
  };

  idrisDeps = [ effects ];

  # tests use a different ipkg and directory structure
  doCheck = false;

  meta = {
    description = "A testing library for Idris";
    homepage = https://github.com/pheymann/specdris;
    license = lib.licenses.mit;
  };
}