Commit Graph

1846 Commits

Author SHA1 Message Date
Mauricio Collares
0ce130a11b
Merge pull request #250947 from collares/sage-gmp
sage: import test fixes for gmp update
2023-08-23 13:13:44 +02:00
Mauricio Collares
71e74a395b sage: import test fixes for gmp update 2023-08-23 12:09:01 +02:00
Šimon Brandner
4920a168dc
geogebra6: 6-0-785-0 -> 6-0-794-0
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
2023-08-21 21:27:51 +02:00
Artturi
52d8a64da6
Merge pull request #249212 from Artturin/makewrapperevaler 2023-08-20 13:25:00 +03:00
R. Ryantm
85632d125b calc: 2.14.1.6 -> 2.14.3.5 2023-08-19 03:45:31 +00:00
Artturin
9594f53b99 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`
2023-08-14 23:13:27 +03:00
Lassulus
43fd3a94bb
Merge pull request #245215 from idlip/pspp-bump
pspp: 1.4.1 -> 1.6.2
2023-08-14 20:34:03 +02:00
7c6f434c
6221aed0d1
Merge pull request #247359 from xworld21/R-sweave-tex
R: split tex output for use with texlive.combine
2023-08-14 16:50:01 +00:00
Weijia Wang
f6538bb83a eigenmath: set platforms 2023-08-13 17:31:58 +02:00
Nick Cao
b09606fc0a
eigenmath: unstable-2023-06-16 -> unstable-2023-08-03
Diff: 800adc5c0b...f202cf0c34
2023-08-13 15:50:40 +08:00
Vincenzo Mantova
fb4da9bcad R: split tex output for use with texlive.combine 2023-08-08 11:37:56 +01:00
Vladimír Čunát
a93afc73ef
polymake: pin back to perl 5.36
https://hydra.nixos.org/build/230316833/nixlog/2/tail
2023-08-07 08:52:10 +02:00
Mauricio Collares
91c8b652db
Merge pull request #246980 from collares/sage-next-20230728
[staging-next] sage: numpy/scipy upgrade patches
2023-08-05 10:14:27 +02:00
Mauricio Collares
c25f522dda sage: import upstream numpy/scipy upgrade patches 2023-08-02 11:41:20 +02:00
Carl Richard Theodor Schneider
27657a22ba sage: use overrideScope instead of packageOverrides 2023-08-01 15:04:21 +02:00
Weijia Wang
2d69842838
Merge pull request #245931 from soupglasses/pkg/ns-usbloader-7.0
ns-usbloader: init at 7.0
2023-07-31 11:56:30 +02:00
Martin Weinelt
86c62f4d00
Merge pull request #244655 from oddlama/init-insightface
python310Packages.insightface: init at 0.7.3
2023-07-29 20:49:19 +02:00
oddlama
3d0ab76d81
mxnet: fix darwin build 2023-07-29 13:28:30 +02:00
Sofi
00d7684ad8
maintainers: rename imsofi to soupglasses 2023-07-28 20:01:06 +02:00
Nick Cao
35abc09040
Merge pull request #245458 from vale981/patch-1
mathematica: enable wayland support
2023-07-27 20:41:19 -06:00
Valentin Boettcher
ff73ec1d6d
mathematica: enable wayland support 2023-07-26 10:03:01 -04:00
Pol Dellaiera
6513fb9b37
Merge pull request #244818 from r-ryantm/auto-update/fricas
fricas: 1.3.8 -> 1.3.9
2023-07-26 13:26:10 +02:00
Pol Dellaiera
77df81300c
Merge pull request #245256 from r-ryantm/auto-update/labplot
labplot: 2.10.0 -> 2.10.1
2023-07-26 13:22:52 +02:00
Connor Baker
495875182e
Merge pull request #224068 from SomeoneSerge/respect-config-cudaSupport
Respect global config.cudaSupport
2023-07-25 14:18:14 -04:00
Dilip
401be824b2 pspp: 1.4.1 -> 1.6.2
Note: needs ssw >= 0.7
2023-07-25 11:08:27 +05:30
R. Ryantm
5577734d9e labplot: 2.10.0 -> 2.10.1 2023-07-24 22:40:48 +00:00
R. Ryantm
e136d9b0c8 fricas: 1.3.8 -> 1.3.9 2023-07-22 11:43:20 +00:00
Felix Bühler
0a2745684e
Merge pull request #239624 from Stunkymonkey/use-optionalString-then
treewide: use optionalString instead of 'then ""'
2023-07-22 13:02:47 +02:00
Someone Serge
471dbe9bcf
treewide: consume config.cudaSupport as required
Eliminate uses of `config.cudaSupport or false` and alike, since the
option is now declared in config.nix with a default value

fd .nix -t f -x sed 's/config\.cudaSupport or false, cudaPackages [?] [{][}]/config.cudaSupport, cudaPackages ? { }/' '{}' -i
fd .nix -t f -x sed 's/config\.cudaSupport or false/config.cudaSupport/' '{}' -i
fd .nix -t f -x sed 's/cudaSupport = pkgs.config.cudaSupport/inherit (pkgs.config) cudaSupport/' '{}' -i
fd .nix -t f -x sed 's/cudaSupport = config.cudaSupport/inherit (config) cudaSupport/' '{}' -i
2023-07-20 18:08:19 +03:00
Someone Serge
bf9e6fe9b8
tree-wide: rm cudaSupport ? false formal parameters
'cudaSupport ? false' -> 'cudaSupport ? config.cudaSupport or false' to respect global defaults

Packages expressions that take `cudaSupport ? false` are likely to
ignore `config.cudaSupport`. Instead, we want them to make `cudaSupport`
a required argument, or to explicitly refer to `config`
2023-07-20 17:27:07 +03:00
R. Ryantm
48e895c202 primecount: 7.8 -> 7.9 2023-07-17 18:33:41 +00:00
Mauricio Collares
63fd36b9f1 pari: 2.15.3 -> 2.15.4 2023-07-12 08:53:37 +01:00
Weijia Wang
763c174440
Merge pull request #236975 from r-ryantm/auto-update/singular
singular: 4.3.2p1 -> 4.3.2p2
2023-07-09 18:14:53 +03:00
Mauricio Collares
8f216662cb sage: import singular 4.3.2p2 update patch 2023-07-09 12:59:45 +01:00
R. Ryantm
69cc6c07ac singular: 4.3.2p1 -> 4.3.2p2 2023-07-09 12:57:07 +01:00
Mauricio Collares
1104a22962 sage: refresh patches 2023-07-09 12:53:52 +01:00
R. Ryantm
ca9e7a2416 polymake: 4.9 -> 4.10 2023-07-09 06:18:12 +00:00
dev-null-undefined
76177da5c0
mathematica: 13.2.1 -> 13.3.0 2023-07-06 14:20:10 +02:00
alyaeanyx
2ae8e33832 {libqalculate, qalculate-gtk, qalculate-qt}: 4.6.1 -> 4.7.0 2023-07-03 20:07:10 +02:00
Justin Bedő
296758401d
Merge pull request #239891 from NixOS/r-updates
R updates
2023-06-29 13:14:20 +10:00
kilianar
46f3360e1a geogebra6: 6-0-745-0 -> 6-0-785-0 2023-06-28 00:08:19 +02:00
kilianar
48a30529f7 geogebra: 5-0-745-0 -> 5-0-785-0 2023-06-28 00:08:19 +02:00
Justin Bedo
bd8f4a24e1
R: 4.3.0 -> 4.3.1 2023-06-26 16:47:23 +10:00
Felix Buehler
f3719756b5 treewide: use optionalString instead of 'then ""' 2023-06-24 20:19:19 +02:00
Nick Cao
7d73228de8
eigenmath: unstable-2023-05-12 -> unstable-2023-06-16
Diff: a6de473ad8...800adc5c0b
2023-06-22 16:40:56 +08:00
Weijia Wang
169cb59498 calc: replace util-linux with unixtools.col 2023-06-15 14:25:40 +03:00
Justin Bedő
4ae814f720
Merge pull request #234958 from NixOS/r-updates
R,rPackages: R 4.2.3 -> 4.3.0
2023-06-04 21:23:50 +10:00
Doron Behar
f204873aa8
Merge pull request #213235 from Stunkymonkey/mathematica-deprecate-phases
mathematica{9,10,11}: deprecate phases
2023-06-03 11:47:36 +03:00
R. Ryantm
a9be9ddb0e calc: 2.14.1.5 -> 2.14.1.6 2023-06-02 23:42:17 +00:00
Felix Buehler
04512a32bf mathematica{9,10,11}: deprecate phases 2023-06-02 18:10:52 +02:00