Commit Graph

120 Commits

Author SHA1 Message Date
Markus Kowalewski
ee45bd2430 snapper: remove nested with from meta
(cherry picked from commit 97d4d8ab63)
2024-11-17 17:07:27 +00:00
Markus Kowalewski
504288f505 snapper: apply nixfmt
(cherry picked from commit a761c58c53)
2024-11-17 17:07:27 +00:00
Markus Kowalewski
dc2fec7f11 snapper: 0.11.2 -> 0.12.0
(cherry picked from commit 812eb880a4)
2024-11-17 17:07:27 +00:00
Zhong Jianxin
35cc8ee6c6 snet: disable flaky test 2024-11-09 23:22:39 +08:00
Zhong Jianxin
298ab04967 snet: format using nixfmt-rfc-style, remove with lib usage 2024-11-09 23:21:47 +08:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00
Fabián Heredia Montiel
f4cac4e64b
maintainers: remove ianmjones (#353908) 2024-11-05 23:51:15 -06:00
Peder Bergebakken Sundt
b7a205f797
snyk: 1.1293.1 -> 1.1294.0 (#351173) 2024-11-05 22:30:38 +01:00
Ian M. Jones
232ece2599
maintainers: remove ianmjones 2024-11-05 20:47:26 +00:00
Vladimir Timofeenko
483eb12ac9 snowflake-cli: init at 3.1.0 2024-11-04 21:16:41 -08:00
wxt
f0f876f674
snoop: 0.4 -> 0.4.1 2024-10-26 10:48:11 +08:00
jfvillablanca
dd766b6255 snyk: 1.1293.1 -> 1.1294.0
https://github.com/snyk/cli/releases/tag/v1.1294.0
2024-10-25 21:39:02 +08:00
Atemu
d504d42cdf
snipaste: 2.9.2-Beta -> 2.10.2 + add update script (#349305) 2024-10-21 14:50:21 +02:00
L-Trump
117bafd4d2 snipaste: add updateScript 2024-10-21 19:56:07 +08:00
L-Trump
77514565ae snipaste: 2.9.2-Beta -> 2.10.2 2024-10-21 19:55:25 +08:00
wxt
45039a6730
snoop: init at 0.4 2024-10-19 19:21:10 +08:00
Peder Bergebakken Sundt
fba4f0f724
snakemake: 8.20.1 -> 8.23.0 (#348616) 2024-10-17 01:18:36 +02:00
Gaetan Lepage
a019ba32e5 snakemake: 8.20.1 -> 8.23.0
Diff:
https://github.com/snakemake/snakemake/compare/refs/tags/v8.20.1...v8.23.0

Changelog:
https://github.com/snakemake/snakemake/blob/refs/tags/v8.23.0/CHANGELOG.md
2024-10-16 09:00:59 +02:00
Gaetan Lepage
49a382308c snakemake: format 2024-10-16 08:34:58 +02:00
Gaetan Lepage
3c971bb4f9 snakemake: move to by-name 2024-10-16 08:34:58 +02:00
R. Ryantm
f10865b948 snips-sh: 0.4.0 -> 0.4.1 2024-10-16 04:37:38 +00:00
Patka
b13432edec snipe-it: 7.0.12 -> 7.0.13 2024-10-15 09:11:35 +02:00
Pol Dellaiera
56cbea0d2e
snapweb: init at 0.8.0 (#347536) 2024-10-14 07:14:23 +02:00
Fabián Heredia Montiel
ccec93c1c7 treewide: replace webkitgtk to webkitgtk_4_0
sed -i 's/ webkitgtk\b/ webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/(webkitgtk\b/(webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/\.webkitgtk\b/.webkitgtk_4_0/g' pkgs/**.nix

webkitgtk is currently pointing to that specific ABI version but the
alias is going to start warning
2024-10-11 17:23:43 -06:00
ettom
30d0cf4bde snapweb: init at 0.8.0 2024-10-09 21:45:45 +03:00
Jon Seager
3bb242fba6
snapcraft: disable failing test related to craft-parts 2.1.2
This is a red-herring, and I suspect due to a unit test that's
too close to the underlying implementation. I've tested building
a couple of snaps with the new version of craft-parts (including)
ones which use the `python` plugin, and things seem to work
fine.
2024-10-07 17:49:43 +01:00
Jon Seager
83be384908
snapcraft: 8.3.3 -> 8.4.1 2024-10-04 11:39:00 +01: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
R. Ryantm
28306a729a snipe-it: 7.0.11 -> 7.0.12 2024-09-23 14:13:09 +02:00
Aleksana
360425ea16
snyk: move to by-name and modernize derivation (#343726) 2024-09-22 23:22:56 +08:00
Mutsuha Asada
6a8ee1c9f9
snyk: move to by-name 2024-09-22 22:53:26 +09:00
Aleksana
33e82aab99
sng: 1.1.0 -> 1.1.1 (#342809) 2024-09-22 19:00:45 +08:00
Anderson Torres
a4b3d54e40 sng: 1.1.0 -> 1.1.1 2024-09-18 13:13:32 -03:00
Anderson Torres
5a1faea675 sng: refactor
- nixfmt-rfc-style
- finalAttrs
- strictDeps
- no nested with
2024-09-18 11:01:42 -03:00
Anderson Torres
6dd26b15ef sng: migrate to by-name 2024-09-18 11:01:42 -03:00
R. Ryantm
5a823a3597 sn-pro: 1.1.0 -> 1.2.0 2024-09-17 20:14:39 +00:00
R. Ryantm
90aee059a2 sn0int: 0.26.0 -> 0.26.1 2024-09-15 15:51:16 +00:00
Aleksana
dcf70734ba
snips-sh: init at 0.4.0 (#341494) 2024-09-15 10:37:14 +08:00
Jermeiah S
62d918d66f
snips-sh: init at 0.4.0 2024-09-14 14:25:44 -04:00
R. Ryantm
7a533b24be snapcraft: 8.3.2 -> 8.3.3 2024-09-14 03:36:12 +00:00
Paul Meyer
7d1032ea47 snpguest: 0.7.0 -> 0.7.1
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-09-12 11:08:13 +02:00
Paul Meyer
f482820efd snphost: 0.4.0 -> 0.5.0
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-09-10 15:12:22 +02:00
Paul Meyer
76b5c3b2b5 snpguest: 0.6.0 -> 0.7.0
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-09-10 15:11:32 +02:00
Weijia Wang
0ddd1d7cc4
snipe-it: 7.0.7 -> 7.0.11 (#330025) 2024-09-09 23:26:08 +02:00
Artturin
cc70915bef
snipaste: 2.9-Beta2 -> 2.9.2-Beta (#339855) 2024-09-09 19:28:20 +03:00
Paul Meyer
3f7520c028
snicat: 0.0.1 -> 0.0.1-unstable-2024-09-05 (#339818) 2024-09-09 09:11:56 +02:00
R. Ryantm
e8fcc43266 sniffglue: 0.16.0 -> 0.16.1 2024-09-09 02:34:43 +00:00
Paul Meyer
81fc1c283d snicat: 0.0.1 -> 0.0.1-unstable-2024-09-05
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-09-08 13:37:40 +02:00
luftmensch-luftmensch
db9c231bd5
snipaste: 2.9-Beta2 -> 2.9.2-Beta 2024-09-05 19:12:39 +02:00
Sandro Jäckel
ca355f14c8
treewide: replace all pytest-cov patching outside of pythonPackages with pytest-cov-stub 2024-08-27 20:47:13 +02:00