about summary refs log tree commit diff
path: root/pkgs/applications/science/math
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-08-14 23:12:28 +0300
committerArtturin <Artturin@artturin.com>2023-08-14 23:13:27 +0300
commit9594f53b996966eb87e2040561a589ff5419debc (patch)
treedfdfd30904b9e2f13d985342dacb75f436ffd7fe /pkgs/applications/science/math
parentcb81c2b288b2c939151220d112d5eae48ad973d5 (diff)
downloadnixlib-9594f53b996966eb87e2040561a589ff5419debc.tar
nixlib-9594f53b996966eb87e2040561a589ff5419debc.tar.gz
nixlib-9594f53b996966eb87e2040561a589ff5419debc.tar.bz2
nixlib-9594f53b996966eb87e2040561a589ff5419debc.tar.lz
nixlib-9594f53b996966eb87e2040561a589ff5419debc.tar.xz
nixlib-9594f53b996966eb87e2040561a589ff5419debc.tar.zst
nixlib-9594f53b996966eb87e2040561a589ff5419debc.zip
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`
Diffstat (limited to 'pkgs/applications/science/math')
-rw-r--r--pkgs/applications/science/math/sage/sage-with-env.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/sage/sage-with-env.nix b/pkgs/applications/science/math/sage/sage-with-env.nix
index 7632b851773c..378f7e29dd99 100644
--- a/pkgs/applications/science/math/sage/sage-with-env.nix
+++ b/pkgs/applications/science/math/sage/sage-with-env.nix
@@ -1,6 +1,5 @@
 { 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)