depot/pkgs/development/idris-modules/tp.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
570 B
Nix

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