summaryrefslogtreecommitdiffstats
path: root/pkgs/development/idris-modules/tomladris.nix
blob: 1d754988a1ecc96e0ffa73e24c1f8323617262fb (plain)
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
31
32
33
{
  build-idris-package,
  fetchFromGitHub,
  contrib,
  lightyear,
  lib,
}:
build-idris-package {
  pname = "tomladris";
  version = "2017-11-14";

  idrisDeps = [
    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
    ];
  };
}