26 lines
567 B
Nix
26 lines
567 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|