summary refs log tree commit diff
path: root/pkgs/development/idris-modules/tap.nix
blob: 7f80a1ce3c505b0685a1d0217c8f4fe3470c73b6 (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
{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package  {
  name = "tap";
  version = "2017-04-08";

  idrisDeps = [ contrib ];

  src = fetchFromGitHub {
    owner = "ostera";
    repo = "tap-idris";
    rev = "0d019333e1883c1d60e151af1acb02e2b531e72f";
    sha256 = "0fhlmmivq9xv89r7plrnhmvay1j7bapz3wh7y8lygwvcrllh9zxs";
  };

  postUnpack = ''
    rm source/Draft.ipkg
  '';

  meta = {
    description = "A simple TAP producer and consumer/reporter for Idris";
    homepage = https://github.com/ostera/tap-idris;
    license = lib.licenses.bsd3;
    maintainers = [ lib.maintainers.brainrape ];
  };
}