Commit Graph

158 Commits

Author SHA1 Message Date
Sefa Eyeoglu
80b560bc35
fatrop: 0.0.1 -> 0.0.4, casadi: 3.6.6 -> 3.6.7 (#339110) 2024-10-27 12:49:02 +01:00
Konstantin Bogdanov
76013d4ec4
factorio: 2.0.10 -> 2.0.11 2024-10-26 11:20:09 +02:00
RaHoni
6db8aafdc3
factorio: 2.0.9 -> 2.0.10 2024-10-24 18:57:33 +02:00
Luke Granger-Brown
33892f852d factorio-experimental: 2.0.9 -> 2.0.10 2024-10-23 23:21:44 +01:00
Luke Granger-Brown
b79d605f73 factorio: 2.0.8 -> 2.0.9 2024-10-23 15:39:09 +01:00
Nick Cao
baf2abc56b
fanbox-dl: 0.23.1 -> 0.23.2 (#350574) 2024-10-23 09:36:54 -04:00
Austin Horstman
83de8dc8cb
fastfetch: 2.27.1 -> 2.28.0 2024-10-22 21:10:26 -05:00
R. Ryantm
11b4a96d41 fanbox-dl: 0.23.1 -> 0.23.2 2024-10-22 23:21:55 +00:00
Luke Granger-Brown
0d3fab394f factorio: reformat update.py with ruff and make lint clean 2024-10-22 19:45:43 +01:00
Luke Granger-Brown
8387c1626d factorio-space-age: name drv -space-age, rather than -experimental 2024-10-22 19:45:43 +01:00
Luke Granger-Brown
a9522ff5d2 factorio-experimental: 2.0.8 -> 2.0.9 2024-10-22 19:45:43 +01:00
Luke Granger-Brown
b9b0f03e88 factorio: make update.py more robust about missing experimental versions
When experimental==stable for Space Age, the experimental.expansion key
just goes missing, so we need to fall back to stable in that case.
2024-10-22 19:45:43 +01:00
Luke Granger-Brown
44754ac517 factorio: change update.py to use the Factorio SHA256 hashes file 2024-10-22 19:45:42 +01:00
Luke Granger-Brown
8a819d416f factorio: nixfmt 2024-10-22 19:45:42 +01:00
Luke Granger-Brown
f68438a9bb factorio: migrate to by-name hierarchy 2024-10-22 19:45:42 +01:00
R. Ryantm
9f8d9fb7e6 fastcdr: 2.2.4 -> 2.2.5 2024-10-09 12:56:20 +00:00
redyf
fbcdee1811 fabric-ai: 1.4.46 -> 1.4.54
https://github.com/danielmiessler/fabric/releases/tag/v1.4.54
2024-10-07 18:10:28 -03:00
nixpkgs-merge-bot[bot]
0034715d70
fabric-ai: 1.4.26 -> 1.4.46 (#346638) 2024-10-06 15:33:10 +00:00
Austin Horstman
6af4ebd62a
fastfetch: 2.26.1 -> 2.27.1 (#346791)
* fastfetch: 2.26.1 -> 2.27.0

* fastfetch: 2.27.0 -> 2.27.1
2024-10-06 09:22:16 +02:00
R. Ryantm
9c212f8177 fabric-ai: 1.4.26 -> 1.4.46 2024-10-05 09:41:41 +00:00
Austin Horstman
06bc2fecbb
fastfetch: 2.26.0 -> 2.26.1 2024-09-29 09:50:36 -05:00
Austin Horstman
9e664abea9
fastfetch: 2.25.0 -> 2.26.0 2024-09-28 22:09:05 -05:00
nixpkgs-merge-bot[bot]
e0a82be82a
fabric-ai: 1.4.14 -> 1.4.26 (#344829) 2024-09-28 09:20:47 +00:00
h7x4
8c2cc73d72
factplusplus: init at 1.6.5 (#194714) 2024-09-27 10:31:57 +02:00
R. Ryantm
02309d707e fabric-ai: 1.4.14 -> 1.4.26 2024-09-27 07:49:31 +00:00
Merlin Humml
48f5a95038
factplusplus: init at 1.6.5 2024-09-26 17:02:00 +02:00
R. Ryantm
9ccef15b03 fastcompmgr: 0.3 -> 0.4 2024-09-26 03:34:55 +00:00
Franz Pletz
de863dbb8c
fastcompmgr: init at 0.3 (#336909) 2024-09-25 17:18:07 +02:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Guilhem Saurel
2f34e5e909 fatrop: 0.0.3 -> 0.0.4 2024-09-20 15:31:07 +02:00
Ryan Omasta
16851d21a8
fastfetch: 2.24.0 -> 2.25.0 2024-09-18 20:44:10 -06:00
Mikael Fangel
132400377c
fantomas: 6.3.13 -> 6.3.15 2024-09-15 22:26:07 +02:00
jaredmontoya
2f3798116d fabric-ai: init at 1.4.14 2024-09-15 16:23:10 +02:00
uncenter
135b49bb5c fastfetch: update description to match the project 2024-09-13 17:46:32 +02:00
redyf
ee1d421487 fastfetch: 2.23.0 -> 2.24.0
https://github.com/fastfetch-cli/fastfetch/releases/tag/2.24.0
2024-09-11 18:53:20 -03:00
Mikael Fangel
10fb383ce1
fantomas: 6.3.12 -> 6.3.13 2024-09-10 23:43:23 +02:00
R. Ryantm
26c4d6bc41 fastcdr: 2.2.3 -> 2.2.4 2024-09-10 12:53:51 +00:00
Weijia Wang
39a51eb679 fast-float: 6.1.5 -> 6.1.6 2024-09-09 01:43:33 +02:00
Mikael Fangel
b4fa3c3377
fantomas: 6.3.11 -> 6.3.12 2024-09-06 22:31:05 +02:00
Weijia Wang
010f87afc6
fast-float: 6.1.4 -> 6.1.5 (#339139) 2024-09-05 22:21:07 +02:00
Peder Bergebakken Sundt
6439549cbf
facter: 4.6.1 -> 4.8.0, puppet-bolt: 3.28.0 -> 3.30.0 (#337220) 2024-09-05 11:20:33 -04:00
Austin Horstman
5447dba33d
fastfetch: 2.22.0 -> 2.23.0 2024-09-02 22:17:03 -05:00
R. Ryantm
3187df8bac fast-float: 6.1.4 -> 6.1.5 2024-09-03 01:07:32 +00:00
Mikael Fangel
c0e15d71af
fantomas: 6.3.10 -> 6.3.11 2024-09-02 22:42:13 +02:00
Guilhem Saurel
1cf3c6b671 fatrop: 0.0.1 -> 0.0.3
Diff: https://github.com/meco-group/fatrop/compare/v0.0.1...0.0.3
2024-09-02 17:15:57 +02:00
Cameron Dugan
80f3d367db fastcompmgr: init at 0.3
fastcompmgr: init at 0.3
2024-08-26 21:06:38 -04:00
Martin Weinelt
9c50de8b57
tree-wide: remove eelco as maintainer from things he no longer maintains (#336287) 2024-08-26 20:39:56 +02:00
Austin Horstman
ad6778492e
fastfetch: imagemagick_light -> imagemagick
Getting x11 errors on darwin compilation with light version.
2024-08-25 22:20:06 -05:00
Austin Horstman
ff036cf726
fastfetch: 2.21.3 -> 2.22.0 2024-08-25 22:11:49 -05:00
Anthony ROUSSEL
c575666ce4 facter: 4.6.1 -> 4.8.0
https://github.com/puppetlabs/facter/releases/tag/4.8.0
https://github.com/puppetlabs/facter/compare/4.6.1...4.8.0
2024-08-25 12:15:49 +02:00