tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
sollya: build on darwin and enable tests
Weijia Wang
3 years ago
66fc1099
192ac79d
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
interpreters
sollya
default.nix
+4
-2
pkgs/development/interpreters/sollya/default.nix
reviewed
···
19
19
20
20
buildInputs = [ gmp mpfr mpfi libxml2 fplll ];
21
21
22
22
+
doCheck = true;
23
23
+
22
24
meta = with lib; {
23
25
description = "A tool environment for safe floating-point code development";
24
26
homepage = "https://www.sollya.org/";
25
27
license = licenses.cecill-c;
26
26
-
platforms = platforms.linux;
27
27
-
maintainers = with maintainers; [ ];
28
28
+
platforms = platforms.unix;
29
29
+
maintainers = with maintainers; [ wegank ];
28
30
};
29
31
}