-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
26 lines (25 loc) · 862 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
description = "HTTP index provider";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.rust-overlay.url = "github:oxalica/rust-overlay";
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-21.11";
outputs = { self, nixpkgs, flake-utils, rust-overlay }:
flake-utils.lib.eachDefaultSystem (system:
let
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs { inherit system overlays; };
rustStable = pkgs.rust-bin.stable.latest.default.override {
extensions = [ "rust-src" ];
};
in
{
devShell = pkgs.mkShell {
buildInputs = [
pkgs.go
rustStable
] ++ (if (system == "aarch64-darwin" || system == "x86_64-darwin") then [
pkgs.darwin.apple_sdk.frameworks.Security
] else [ ]);
};
});
}