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

  src = fetchFromGitHub {
    owner = "superfunc";
    repo = "tp";
    rev = "ef59ccf355ae462bd4f55d596e6d03a9376b67b2";
    sha256 = "1a924qvm1dqfg419x8n35w0sz74vyyqsynz5g393f82jsrrwci8z";
  };

  # tests fail with permission error
  doCheck = false;

  meta = {
    description = "Strongly Typed Paths for Idris";
    homepage = https://github.com/superfunc/tp;
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.brainrape ];
  };
}