about summary refs log tree commit diff
path: root/pkgs/development/idris-modules/http4idris.nix
blob: 5b79644c3a0b2ac7dbf3a9d8771008331473079f (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
{ build-idris-package
, fetchFromGitHub
, prelude
, contrib
, lib
, idris
}:

build-idris-package  {
  name = "http4idris";
  version = "2018-01-16";

  idrisDeps = [ prelude contrib ];

  src = fetchFromGitHub {
    owner = "A1kmm";
    repo = "http4idris";
    rev = "f44ffd2a15628869c7aadf241e3c9b1ee7b40941";
    sha256 = "16bs7rxbsq7m7jm96zkqiq8hj68l907m8xgmjrcxzl158qvzhw1w";
  };

  meta = {
    description = "An experimental HTTP framework for Idris";
    homepage = https://github.com/A1kmm/http4idris;
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.brainrape ];
    inherit (idris.meta) platforms;
  };
}