summary refs log tree commit diff
path: root/pkgs/development/idris-modules/tomladris.nix
blob: a5d99d1928435d529f527d51a18462e578d09bb7 (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
, contrib
, lightyear
, lib
, idris
}:

build-idris-package  {
  name = "tomladris";
  version = "2017-11-14";

  idrisDeps = [ prelude lightyear contrib ];

  src = fetchFromGitHub {
    owner = "emptyflash";
    repo = "tomladris";
    rev = "0fef663e20528c455f410f01124c8e3474a96606";
    sha256 = "0a0fc0bsr356plgzsr5sr4qmqx4838998wjwmflz10qwsv1j3zsw";
  };

  meta = {
    description = "TOML parser for Idris";
    homepage = https://github.com/emptyflash/tomladris;
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ siddharthist brainrape ];
    inherit (idris.meta) platforms;
  };
}