summary refs log tree commit diff
diff options
context:
space:
mode:
authorMauricio Collares <mauricio@collares.org>2021-05-29 13:33:43 -0300
committerMauricio Collares <mauricio@collares.org>2021-05-30 13:51:15 -0300
commit2c7d2ce295296553451a7839513427f63377e92e (patch)
treea0e93cc51b22f0d0f6bb1d08b128942f93dce111
parent614c0b2bf3ed63fb1ec4c8e6b5d0e8b684cd6438 (diff)
downloadnixpkgs-2c7d2ce295296553451a7839513427f63377e92e.tar
nixpkgs-2c7d2ce295296553451a7839513427f63377e92e.tar.gz
nixpkgs-2c7d2ce295296553451a7839513427f63377e92e.tar.bz2
nixpkgs-2c7d2ce295296553451a7839513427f63377e92e.tar.lz
nixpkgs-2c7d2ce295296553451a7839513427f63377e92e.tar.xz
nixpkgs-2c7d2ce295296553451a7839513427f63377e92e.tar.zst
nixpkgs-2c7d2ce295296553451a7839513427f63377e92e.zip
sageWithDoc: fix documentation symlinks
-rw-r--r--pkgs/applications/science/math/sage/sagedoc.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/science/math/sage/sagedoc.nix b/pkgs/applications/science/math/sage/sagedoc.nix
index f4a8bf19b69..d53947d806d 100644
--- a/pkgs/applications/science/math/sage/sagedoc.nix
+++ b/pkgs/applications/science/math/sage/sagedoc.nix
@@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
     mv html/en/_static{,.tmp}
     for _dir in `find -name _static` ; do
           rm -r $_dir
-          ln -s html/en/_static $_dir
+          ln -rs html/en/_static $_dir
     done
     mv html/en/_static{.tmp,}
   '';