Commit 9594f53b authored by Artturin's avatar Artturin
Browse files

sage.with-env: remove unnecessary makeWrapper

Builds without it, all it seems to be doing is adding `/nix/store/6xfmwacsa9a7mzjjarknf9zg28q67ghq-sage-with-env-10.0/var/lib/sage/installed/make_shell_wrapper-hook`
parent cb81c2b2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
{ stdenv
, lib
, makeWrapper
, sage-env
, blas
, lapack
@@ -72,7 +71,7 @@ let
      []
    );

  allInputs = lib.remove null (nativeBuildInputs ++ buildInputs ++ pythonEnv.extraLibs ++ [ makeWrapper ]);
  allInputs = lib.remove null (nativeBuildInputs ++ buildInputs ++ pythonEnv.extraLibs);
  transitiveDeps = lib.unique (builtins.concatLists (map transitiveClosure allInputs ));
  # fix differences between spkg and sage names
  # (could patch sage instead, but this is more lightweight and also works for packages depending on sage)