forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / idris-modules / http4idris.nix
blob3e235750a6bcf28c7adc7fec854c8148af6db3b2
1 { build-idris-package
2 , fetchFromGitHub
3 , contrib
4 , lib
5 }:
6 build-idris-package  {
7   pname = "http4idris";
8   version = "2018-01-16";
10   idrisDeps = [ contrib ];
12   src = fetchFromGitHub {
13     owner = "A1kmm";
14     repo = "http4idris";
15     rev = "f44ffd2a15628869c7aadf241e3c9b1ee7b40941";
16     sha256 = "16bs7rxbsq7m7jm96zkqiq8hj68l907m8xgmjrcxzl158qvzhw1w";
17   };
19   meta = {
20     description = "Experimental HTTP framework for Idris";
21     homepage = "https://github.com/A1kmm/http4idris";
22     license = lib.licenses.mit;
23     maintainers = [ lib.maintainers.brainrape ];
24   };