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
diff --git a/REQUIRE b/REQUIRE | |
index a7c2269..597a7cf 100644 | |
--- a/REQUIRE | |
+++ b/REQUIRE | |
@@ -1,4 +1,3 @@ | |
julia 0.6 | |
BinDeps | |
-@osx Homebrew | |
Compat 0.41.0 | |
diff --git a/deps/build.jl b/deps/build.jl |
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
#!/usr/bin/env nix-shell --pure | |
with import <nixpkgs> {}; | |
let | |
d = version: "v${lib.concatStringsSep "." (lib.take 2 (lib.splitString "." version))}"; | |
extraLibs = [ mbedtls zlib zeromq3 ]; | |
in | |
stdenv.mkDerivation rec { | |
name = "julia-${version}-env"; | |
version = julia.version; |