Commit Graph

168 Commits

Author SHA1 Message Date
Ian M. Jones
232ece2599
maintainers: remove ianmjones 2024-11-05 20:47:26 +00:00
Aleksana
c172738191
schemamap: 0.4.0 -> 0.4.3 (#349511) 2024-11-05 16:54:49 +08:00
Ramses
84f70886f2
scitokens-cpp: 1.1.1 -> 1.1.2 (#352557) 2024-11-03 22:49:53 +01:00
R. Ryantm
9e225c4f23 scitokens-cpp: 1.1.1 -> 1.1.2 2024-10-31 06:30:56 +00:00
github-actions[bot]
dee80e3490
Merge master into staging-next 2024-10-30 00:14:27 +00:00
R. Ryantm
a1ae1ad328 scip-go: 0.1.15 -> 0.1.21 2024-10-29 05:39:00 +00:00
Krisztian Szabo
44cb9e2937 schemamap: 0.4.0 -> 0.4.3 2024-10-24 17:29:46 +03:00
github-actions[bot]
606bd3114c
Merge master into staging-next 2024-10-23 18:04:32 +00:00
Pol Dellaiera
803a133e76
screentest: unstable-2021-05-10 -> 3.0 (#350445) 2024-10-23 14:50:00 +02:00
aleksana
ee3099b5aa scite: 5.2.2 -> 5.5.3 2024-10-22 19:22:26 +08:00
aleksana
196f5c8560 scite: move to pkgs/by-name 2024-10-22 18:47:57 +08:00
aleksana
f6f6d58c84 screentest: unstable-2021-05-10 -> 3.0 2024-10-22 18:08:31 +08:00
github-actions[bot]
8ba820d7db
Merge master into staging-next 2024-10-17 12:05:34 +00:00
Pablo Ovelleiro Corral
a180636801
screego: 1.11.0 -> 1.11.1 2024-10-16 23:17:28 +02:00
github-actions[bot]
9dd7231a1d
Merge staging-next into staging 2024-10-10 07:55:12 +00:00
R. Ryantm
640c1b9b52 schemamap: 0.3.0 -> 0.4.0 2024-10-10 03:53:51 +00:00
github-actions[bot]
480db5cf27
Merge staging-next into staging 2024-10-06 00:15:59 +00:00
h7x4
1008d5b885
{staruml, figma-linux, infracost, obsidian, scaleway-cli, netbeans}: migrate to by-name (#332171) 2024-10-05 21:36:16 +02:00
github-actions[bot]
f197602956
Merge staging-next into staging 2024-10-04 18:05:00 +00:00
Peder Bergebakken Sundt
6a17d9e651
screego: 1.10.5 -> 1.11.0 (#345892) 2024-10-04 18:32:50 +02:00
Jakub Kozłowski
ec239ce25d
scala-next: Init at 3.5.1 (#336735) 2024-10-04 15:55:21 +02:00
Peder Bergebakken Sundt
401e78d537 screego: fix darwin checkPhase 2024-10-04 10:07:04 +02:00
Pablo Ovelleiro Corral
b1811ddfa9
screego: 1.10.5 -> 1.11.0 2024-10-02 11:19:54 +02:00
github-actions[bot]
910adea78f
Merge staging-next into staging 2024-10-01 06:05:25 +00:00
Tristan Ross
1b82e978d6
scopehal-apps: init at 0-unstable-2024-08-22 (#336646) 2024-09-30 12:34:22 -07:00
Ben Gamari
05c82673ca scopehal-apps: init at unstable-2024-08-22
Co-Authored-By: Hans Baier <foss@hans-baier.de>
2024-09-29 11:06:17 -04:00
nikolaiser
a03eab619f
scala-next: Init at 3.5.1
This change allows to use the latest non-LTS scala version
2024-09-28 11:03:22 +02:00
kashw2
8283321d14 scaleway-cli: moved to by-name 2024-09-27 12:51:21 +10:00
Pol Dellaiera
569d5762e0
scons: add patch to fix builds on sandboxed Darwin (#344059) 2024-09-26 22:06:58 +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
Alex James
e9a92dee53
scons: add patch to fix builds on sandboxed Darwin
As reported in #335665, derivations using scons currently fail on
sandboxed Darwin due to a permission error[^1]. Include a patch from
upstream to handle PermissionError, which fixes SCons builds on
sandboxed Darwin.

[^1]: https://github.com/NixOS/nixpkgs/pull/335665#issuecomment-2297464441
2024-09-23 16:09:37 -05:00
R. Ryantm
c0082d12ed scalingo: 1.33.0 -> 1.34.0 2024-09-17 22:56:35 +00:00
Nick Cao
a0713fd6e6
scrcpy: 2.6.1 -> 2.7 (#342143) 2024-09-16 08:36:12 -04:00
Ryan Omasta
1acbc70878
scrcpy: 2.6.1 -> 2.7 2024-09-15 14:38:11 -06:00
R. Ryantm
17f8866661 screenly-cli: 1.0.0 -> 1.0.1 2024-09-15 19:55:17 +00:00
Peder Bergebakken Sundt
1d28f484f4
scotch: 7.0.4 -> 7.0.5 (#337565) 2024-09-13 02:47:32 +02:00
éclairevoyant
49f7e34d6e
maintainers: remove eclairevoyant 2024-09-10 15:02:41 -04:00
github-actions[bot]
f3e8528ff7
Merge master into staging-next 2024-09-09 14:31:17 +00:00
Jon Seager
7162fe3b5f
screenly-cli: 0.2.8 -> 1.0.0 (#340075) 2024-09-09 13:24:34 +01:00
Jon Seager
18225f75ff
screenly-cli: 0.2.8 -> 1.0.0 2024-09-09 11:29:35 +01:00
github-actions[bot]
769b11176d
Merge master into staging-next 2024-09-05 18:03:49 +00:00
Peder Bergebakken Sundt
4d741d8e4b
schemaspy: 6.1.0-SNAPSHOT -> 6.2.4 (#337020) 2024-09-05 10:57:28 -04:00
github-actions[bot]
37c947df6c
Merge master into staging-next 2024-09-05 12:05:31 +00:00
Stefan Frijters
b3fa49d0ee
scrutiny-collector: fix cross 2024-09-04 23:32:54 +02:00
github-actions[bot]
d834278999
Merge master into staging-next 2024-09-02 00:13:57 +00:00
Jan Tojnar
e9179b4fa3 Merge branch 'master' into staging-next 2024-09-01 19:04:04 +02:00
éclairevoyant
ff49827912
scenefx: fix build 2024-09-01 12:30:52 -04:00
Johannes Jöns
3a37ae6ffb
scalingo: 1.32.0 -> 1.33.0 (#336348) 2024-09-01 12:43:05 +00:00
github-actions[bot]
d8c78f272c
Merge staging-next into staging 2024-08-30 18:04:32 +00:00
Philip Taron
0d1b26857b
treewide: support structuredAttrs in setup hooks (part 2) (#335666) 2024-08-28 14:07:58 -07:00