summary refs log tree commit diff
path: root/pkgs/development/idris-modules/tlhydra.nix
blob: 9106e485c5f0beedb69d5e856cdd295bc9ea20d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ 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;
  };
}