Created
November 12, 2019 18:36
-
-
Save MostAwesomeDude/c335c1b7724c89e1876f64c94e4e9898 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ nixpkgs ? import (builtins.fetchTarball { | |
name = "spotter-pinned-nixpkgs"; | |
url = https://github.com/NixOS/nixpkgs/archive/0137b08bd1070a22564bf67bb7a678d2a6a60452.tar.gz; | |
sha256 = "11806x69zxmmjhpv4cvpii2f51gqyd8yivdk7pv6nmlsc3d349yv"; | |
}) {} }: | |
let | |
inherit (nixpkgs) pkgs; | |
ocamlPackages = pkgs.ocamlPackages_latest; | |
in pkgs.stdenv.mkDerivation { | |
name = "spotter-env"; | |
buildInputs = with pkgs; [ | |
git gist | |
rlwrap | |
ocamlformat | |
] ++ (with ocamlPackages; [ | |
ocaml ocamlbuild findlib utop core camomile zarith | |
]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment