repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python313Packages.traits: fix build (#373698)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
faraday
/
async.nix
blob
adb80e01db3b76ab959f2ef042479abcb7efc4d1
1
{
2
buildDunePackage,
3
faraday,
4
core_unix ? null,
5
async,
6
}:
7
8
buildDunePackage rec {
9
pname = "faraday-async";
10
inherit (faraday) version src;
11
12
minimalOCamlVersion = "4.08";
13
duneVersion = "3";
14
15
propagatedBuildInputs = [
16
faraday
17
core_unix
18
async
19
];
20
21
meta = faraday.meta // {
22
description = "Async support for Faraday";
23
};
24
}