diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2018-10-19 23:38:14 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2018-10-28 23:07:08 +0100 |
commit | 563a444ea9f19ec55b53e82f17f5b97357e56691 (patch) | |
tree | ea0d691c3ea79fa22a75a8d1a406b46cbf9bc61b /sid.opam | |
parent | e5fc2699660b440fa02260091b5bd019866f081c (diff) | |
download | ocaml-sid-563a444ea9f19ec55b53e82f17f5b97357e56691.tar.gz |
_oasis: opam: nix: add build and env setup
Diffstat (limited to 'sid.opam')
-rw-r--r-- | sid.opam | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sid.opam b/sid.opam new file mode 100644 index 0000000..c0e9507 --- /dev/null +++ b/sid.opam @@ -0,0 +1,20 @@ +opam-version: "2.0" +version: "0" +synopsis: "Handle security identfiers" + +maintainer: "Philipp Gesang <phg@phi-gamma.net>" +authors: [ "Philipp Gesang" ] +license: "LGPLv3" +depends: [ + "ocamlbuild" {build} + "oasis" {build} + "stdint" + "ounit" {test} +] +build: [ + ["oasis" "setup"] + ["ocaml" "setup.ml" "-configure"] + ["ocaml" "setup.ml" "-build"] +] +install: [make "install"] +build-test: [make "test"] |