From 5574fa69cfa425a5f487f443dc9a8246e4d9d7e3 Mon Sep 17 00:00:00 2001 From: Jordan Johnson-Doyle Date: Fri, 15 Feb 2019 21:16:08 +0000 Subject: [PATCH] Add my shell.nix --- shell.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..98bdf54 --- /dev/null +++ b/shell.nix @@ -0,0 +1,19 @@ +with import {}; +let src = fetchFromGitHub { + owner = "mozilla"; + repo = "nixpkgs-mozilla"; + # commited 12/2/2019 + rev = "37f7f33ae3ddd70506cd179d9718621b5686c48d"; + sha256 = "0cmvc9fnr38j3n0m4yf0k6s2x589w1rdby1qry1vh435v79gp95j"; + }; +in +with import "${src.out}/rust-overlay.nix" pkgs pkgs; + +stdenv.mkDerivation { + name = "bin"; + buildInputs = [ + latest.rustChannels.nightly.cargo + latest.rustChannels.nightly.rust + ] ++ + pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.apple_sdk.frameworks.Security; +} -- libgit2 1.7.2