summary refs log tree commit diff
path: root/pkgs/development/idris-modules/specdris.nix
blob: e20af3752371158bc1204b2256c5ba661a636071 (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
28
29
30
31
32
33
{ build-idris-package
, fetchgit
, prelude
, base
, effects
, lib
, idris
}:

let
  date = "2017-11-11";
in
build-idris-package {
  name = "specdris";
  version = date;

  src = fetchgit {
    url = "https://github.com/pheymann/specdris";
    rev = "88b80334b8e0b6601324e2410772d35022fc8eaa";
    sha256 = "4813c4be1d4c3dd1dad35964b085f83cf9fb44b16824257c72b468d4bafd0e4f";
  };

  idrisDeps = [ prelude base effects idris ];

  # The tests attribute is very strange as the tests are a different ipkg
  doCheck = false;

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