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
dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
macaddr
/
sexp.nix
blob
86d79dc215d6f2e4e0232fc771a02a547dcdea9f
1
{
2
buildDunePackage,
3
macaddr,
4
ppx_sexp_conv,
5
macaddr-cstruct,
6
ounit2,
7
}:
8
9
buildDunePackage {
10
pname = "macaddr-sexp";
11
12
inherit (macaddr) version src;
13
14
duneVersion = "3";
15
16
propagatedBuildInputs = [ ppx_sexp_conv ];
17
18
checkInputs = [
19
macaddr-cstruct
20
ounit2
21
];
22
doCheck = true;
23
24
meta = macaddr.meta // {
25
description = "Library for manipulation of MAC address representations using sexp";
26
};
27
}