mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-14 07:29:02 +03:00
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
let
|
|
# Look here for information about how pin version of nixpkgs
|
|
# → https://nixos.wiki/wiki/FAQ/Pinning_Nixpkgs
|
|
pinnedPkgs = import (builtins.fetchGit {
|
|
name = "nixpkgs-20.03";
|
|
url = "https://github.com/nixos/nixpkgs/";
|
|
ref = "refs/heads/release-20.03";
|
|
}) { };
|
|
|
|
# This allows overriding pkgs by passing `--arg pkgs ...`
|
|
in { pkgs ? pinnedPkgs }:
|
|
|
|
let
|
|
isMacOS = builtins.currentSystem == "x86_64-darwin";
|
|
darwin-frameworks =
|
|
if isMacOS then
|
|
with pkgs.darwin.apple_sdk.frameworks; [
|
|
AppKit
|
|
CoreFoundation
|
|
CoreServices
|
|
CoreVideo
|
|
Foundation
|
|
Metal
|
|
Security
|
|
]
|
|
else
|
|
[ ];
|
|
llvm = pkgs.llvm_10;
|
|
lld = pkgs.lld_10; # this should match llvm's version
|
|
inputs =
|
|
[
|
|
pkgs.rustup
|
|
pkgs.cargo
|
|
llvm
|
|
# libraries for llvm
|
|
pkgs.libffi
|
|
pkgs.libxml2
|
|
pkgs.zlib
|
|
# faster builds - see https://github.com/rtfeldman/roc/blob/trunk/BUILDING_FROM_SOURCE.md#use-lld-for-the-linker
|
|
lld
|
|
];
|
|
in pkgs.mkShell {
|
|
buildInputs = inputs ++ darwin-frameworks;
|
|
LLVM_SYS_100_PREFIX = "${llvm}";
|
|
}
|
|
|