about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
author7c6f434c <7c6f434c@mail.ru>2024-05-07 05:17:31 +0000
committerGitHub <noreply@github.com>2024-05-07 05:17:31 +0000
commit791853141d71f66ec9819a3064198131ae9760b8 (patch)
tree7805b92217453af426a2149aac731c5841abe89f /pkgs/applications/science
parent9fb582619d1397a8cb64cfe28896a064fa1b33cb (diff)
parentde1618552c9956bf2c5915d94c584a017e3c4a3d (diff)
Merge pull request #309548 from Tom-Hubrecht/sagemath-deps
sage: Add as passthru.tests to critical dependencies
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/lrcalc/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/science/math/lrcalc/default.nix b/pkgs/applications/science/math/lrcalc/default.nix
index 90ee50c682800..0d968e0161796 100644
--- a/pkgs/applications/science/math/lrcalc/default.nix
+++ b/pkgs/applications/science/math/lrcalc/default.nix
@@ -1,6 +1,9 @@
 { lib, stdenv
 , fetchFromBitbucket
 , autoreconfHook
+
+# Reverse dependency
+, sage
 }:
 
 stdenv.mkDerivation rec {
@@ -20,6 +23,8 @@ stdenv.mkDerivation rec {
     autoreconfHook
   ];
 
+  passthru.tests = { inherit sage; };
+
   meta = with lib; {
     description = "Littlewood-Richardson calculator";
     homepage = "http://math.rutgers.edu/~asbuch/lrcalc/";