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

28 lines
588 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, contrib
, lightyear
, bytes
, lib
}:
build-idris-package {
name = "http";
version = "2018-02-25";
2018-07-02 03:18:21 +00:00
idrisDeps = [ contrib lightyear bytes ];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "uwap";
repo = "idris-http";
rev = "dc4a31543f87c0bc44cbaa98192f0303cd8dd82e";
sha256 = "1abrwi5ikymff4g7a0g5wskycvhpnn895z1z1bz9r71ks554ypl8";
};
meta = {
description = "An HTTP library for idris";
homepage = https://github.com/uwap/idris-http;
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.brainrape ];
};
}