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
stats: 2.11.23 -> 2.11.26 (#374860)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
cstruct
/
async.nix
blob
44ac3beb998539e25d56c41d203033b10247d0c9
1
{
2
buildDunePackage,
3
cstruct,
4
async_unix,
5
async,
6
core,
7
}:
8
9
buildDunePackage rec {
10
pname = "cstruct-async";
11
inherit (cstruct) src version meta;
12
13
duneVersion = "3";
14
15
propagatedBuildInputs = [
16
async_unix
17
async
18
cstruct
19
core
20
];
21
}