blob: 0aedc3f48596646dc0439ce2fb7778debbeaa861 (
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 {
pname = "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 ];
};
}
|