File: dune

package info (click to toggle)
ocaml-sha 1.15.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 236 kB
  • sloc: ansic: 1,090; ml: 568; makefile: 16
file content (18 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(rule
 (with-stdout-to
  c_flags.sexp
  (run %{ocaml} %{dep:c_flags.ml})))

(library
 (name sha)
 (public_name sha)
 (synopsis "SHA-1 and SHA-2 family implementations")
 (wrapped false)
 (modules sha1 sha256 sha512)
 (libraries stdlib-shims)
 (foreign_stubs
  (language c)
  (flags
   :standard
   (:include c_flags.sexp))
  (names sha1_stubs sha256_stubs sha512_stubs)))