31 lines
658 B
Nix
31 lines
658 B
Nix
|
{ build-idris-package
|
||
|
, fetchFromGitHub
|
||
|
, prelude
|
||
|
, effects
|
||
|
, contrib
|
||
|
, lightyear
|
||
|
, lib
|
||
|
, idris
|
||
|
}:
|
||
|
|
||
|
build-idris-package {
|
||
|
name = "tlhydra";
|
||
|
version = "2017-13-26";
|
||
|
|
||
|
idrisDeps = [ prelude effects contrib lightyear ];
|
||
|
|
||
|
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;
|
||
|
maintainers = [ lib.maintainers.brainrape ];
|
||
|
inherit (idris.meta) platforms;
|
||
|
};
|
||
|
}
|