summaryrefslogtreecommitdiff
path: root/pkgs/development/idris-modules/http4idris.nix
blob: 0d5f8c3c7c4770bd204762ec10049a67accc5f53 (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
{
  build-idris-package,
  fetchFromGitHub,
  contrib,
  lib,
}:
build-idris-package {
  pname = "http4idris";
  version = "2018-01-16";

  idrisDeps = [ contrib ];

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

  meta = {
    description = "Experimental HTTP framework for Idris";
    homepage = "https://github.com/A1kmm/http4idris";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.brainrape ];
  };
}