summaryrefslogtreecommitdiff
path: root/pkgs/development/idris-modules/config.nix
blob: 9e22601f081e735f580f5ffd82353a50fc07095d (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
34
{
  build-idris-package,
  fetchFromGitHub,
  effects,
  containers,
  lightyear,
  test,
  lib,
}:
build-idris-package {
  pname = "config";
  version = "2017-11-06";

  idrisDeps = [
    effects
    containers
    lightyear
    test
  ];

  src = fetchFromGitHub {
    owner = "benclifford";
    repo = "idris-config";
    rev = "92f98652f5cb06a76c47809f16c661ec6cf11048";
    sha256 = "1w2w2l4drvkf8mdzh3lwn6l5lnkbxlx9p22s7spw82n5s4wib6c9";
  };

  meta = {
    description = "Parsers for various configuration files written in Idris";
    homepage = "https://github.com/benclifford/idris-config";
    license = lib.licenses.bsd3;
    maintainers = [ lib.maintainers.brainrape ];
  };
}