diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-10-14T13·15+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-10-31T07·49+0100 |
commit | 1d02431b608de0d78a6adbce11835bbff485b9a1 (patch) | |
tree | ca7b4c94e8984f6f4b34fd44aacbf987c5feaf56 | |
parent | 3a9b4a146777ae219ec890c2f806d33f26bd5829 (diff) |
Don't pull in git when doing a nix-shell
-rw-r--r-- | release.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release.nix b/release.nix index 24774662cc1b..4be8fdf8c55b 100644 --- a/release.nix +++ b/release.nix @@ -24,8 +24,8 @@ let buildInputs = [ curl bison flex perl libxml2 libxslt bzip2 - tetex dblatex nukeReferences pkgconfig sqlite git - ]; + /* tetex dblatex */ nukeReferences pkgconfig sqlite + ] ++ lib.optional (!lib.inNixShell) git; configureFlags = '' --with-docbook-rng=${docbook5}/xml/rng/docbook |