summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorPhilipp Gesang <phg@phi-gamma.net>2018-10-19 23:38:14 +0200
committerPhilipp Gesang <phg@phi-gamma.net>2018-10-28 23:07:08 +0100
commit563a444ea9f19ec55b53e82f17f5b97357e56691 (patch)
treeea0d691c3ea79fa22a75a8d1a406b46cbf9bc61b /misc
parente5fc2699660b440fa02260091b5bd019866f081c (diff)
downloadocaml-sid-563a444ea9f19ec55b53e82f17f5b97357e56691.tar.gz
_oasis: opam: nix: add build and env setup
Diffstat (limited to 'misc')
-rw-r--r--misc/nix-ocaml-shell.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/misc/nix-ocaml-shell.nix b/misc/nix-ocaml-shell.nix
new file mode 100644
index 0000000..316f156
--- /dev/null
+++ b/misc/nix-ocaml-shell.nix
@@ -0,0 +1,25 @@
+with import <nixpkgs> {};
+
+let
+ libs = [
+ autoconf
+ bubblewrap
+ binutils
+ curl
+ gcc
+ libtool
+ m4
+ ocaml
+ pkgconfig
+ ];
+in
+stdenv.mkDerivation rec {
+ name = "ocaml-env";
+ buildInputs = libs;
+
+ # configure opam with sandboxing
+ shellHook = ''
+ . /home/phg/.opam/opam-init/init.sh &>/dev/null || true
+ export OPAM_USER_PATH_RO=/nix/store
+ '';
+}