From 7c9c491e739df21ee70c24c3c372f4151f26bb83 Mon Sep 17 00:00:00 2001 From: Casey Ransom Date: Mon, 29 Jan 2018 14:27:34 -0500 Subject: [PATCH] make git an explicit dependency My very old (10.10.x) builder tried to run a job, but failed with `error: unknown option `reference-if-able'` as it appears to have been using the system git which is also ancient. I'm still pending another job but i think this fixes it. --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index 3243c4f..7ec2848 100644 --- a/shell.nix +++ b/shell.nix @@ -31,6 +31,7 @@ let carnix openssl.dev pkgconfig + git ] ++ (lib.optional stdenv.isDarwin pkgs.darwin.Security); HISTFILE = "${toString ./.}/.bash_hist";