nixpkgs/pkgs/development/idris-modules/tlhydra.nix

27 lines
597 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, effects
, contrib
, lightyear
, lib
}:
build-idris-package {
name = "tlhydra";
version = "2017-13-26";
2018-07-02 03:18:21 +00:00
idrisDeps = [ effects contrib lightyear ];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "Termina1";
repo = "tlhydra";
rev = "3fc9049447d9560fe16f4d36a2f2996494ac2b33";
sha256 = "1y3gcbc1ypv00vwa0w3v0n6ckf7gnz26xsfmgnidsaxzff3y0ymh";
};
meta = {
description = "Idris parser and serializer/deserealizer for TL language";
homepage = "https://github.com/Termina1/tlhydra";
2018-03-16 11:40:17 +00:00
maintainers = [ lib.maintainers.brainrape ];
};
}