nixpkgs/pkgs/development/idris-modules/http4idris.nix

26 lines
576 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
name = "http4idris";
version = "2018-01-16";
2018-07-02 03:18:21 +00:00
idrisDeps = [ contrib ];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "A1kmm";
repo = "http4idris";
rev = "f44ffd2a15628869c7aadf241e3c9b1ee7b40941";
sha256 = "16bs7rxbsq7m7jm96zkqiq8hj68l907m8xgmjrcxzl158qvzhw1w";
};
meta = {
description = "An experimental HTTP framework for Idris";
homepage = "https://github.com/A1kmm/http4idris";
2018-03-16 11:40:17 +00:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}