My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/tp.nix

25 lines
570 B

{ 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 ];
};
}