about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/idris-modules/tomladris.nix
blob: 8a0e7847f50778d24c003c82f21418e6e7da9abe (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
{ 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 ];
  };
}