My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/http4idris.nix

25 lines
577 B

{ 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 = "An experimental HTTP framework for Idris";
homepage = "https://github.com/A1kmm/http4idris";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}