about summary refs log tree commit diff
path: root/pkgs/development/interpreters/sollya
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2022-06-27 05:00:18 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2022-06-27 05:00:18 +0200
commit66fc10995b501419b584ae56eeffaa475e24b6fe (patch)
tree008fef535c347afa4f6bbb8c0c960142533e350f /pkgs/development/interpreters/sollya
parent192ac79d73d62ef35cad3244faaa3b3a89c62920 (diff)
sollya: build on darwin and enable tests
Diffstat (limited to 'pkgs/development/interpreters/sollya')
-rw-r--r--pkgs/development/interpreters/sollya/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/sollya/default.nix b/pkgs/development/interpreters/sollya/default.nix
index 173263ee04d56..78b45daf178d4 100644
--- a/pkgs/development/interpreters/sollya/default.nix
+++ b/pkgs/development/interpreters/sollya/default.nix
@@ -19,11 +19,13 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ gmp mpfr mpfi libxml2 fplll ];
 
+  doCheck = true;
+
   meta = with lib; {
     description = "A tool environment for safe floating-point code development";
     homepage = "https://www.sollya.org/";
     license = licenses.cecill-c;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ ];
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ wegank ];
   };
 }