cide: add missing git runtime dependency

`git` is being used during `cide package`
This commit is contained in:
zimbatm 2016-02-25 15:15:00 +00:00
parent e3aa635e68
commit 84a4d9e0e1
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, lib, bundlerEnv, makeWrapper, docker }:
{ stdenv, lib, bundlerEnv, makeWrapper, docker, git }:
stdenv.mkDerivation rec {
name = "cide-${version}";
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out/bin
makeWrapper ${env}/bin/cide $out/bin/cide \
--set PATH ${docker}/bin
--set PATH ${docker}/bin:${git}/bin
'';
meta = with lib; {