blob: 63e0dfa46c3cbdbac79679b824866a1b00b9cc0a (
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
27
28
29
30
31
32
|
{
build-idris-package,
fetchFromGitHub,
contrib,
lightyear,
bytes,
lib,
}:
build-idris-package {
pname = "http";
version = "2018-02-25";
idrisDeps = [
contrib
lightyear
bytes
];
src = fetchFromGitHub {
owner = "uwap";
repo = "idris-http";
rev = "dc4a31543f87c0bc44cbaa98192f0303cd8dd82e";
sha256 = "1abrwi5ikymff4g7a0g5wskycvhpnn895z1z1bz9r71ks554ypl8";
};
meta = {
description = "HTTP library for idris";
homepage = "https://github.com/uwap/idris-http";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.brainrape ];
};
}
|