Merge branch 'nix-exec-git' of git://github.com/proger/nixpkgs

This commit is contained in:
Shea Levy 2014-11-12 20:04:11 -05:00
commit 8bc56d5d8e
2 changed files with 5 additions and 1 deletions

View file

@ -55,7 +55,7 @@ stdenv.mkDerivation {
# Install git-subtree.
pushd contrib/subtree
make
make install install-doc
make install ${stdenv.lib.optionalString withManual "install-doc"}
popd
rm -rf contrib/subtree

View file

@ -4023,6 +4023,10 @@ let
nix-exec = callPackage ../development/interpreters/nix-exec {
nix = nixUnstable;
git = git.override {
withManual = false;
pythonSupport = false;
};
};
octave = callPackage ../development/interpreters/octave {