Markus Kowalewski
21377a2876
hpcg: move to pkgs/by-name
2024-09-26 21:18:51 +02:00
Franz Pletz
66415f26e1
deck: migrate to pkgs/by-name ( #344172 )
2024-09-26 16:00:28 +02:00
lassulus
f2d419d3b7
CLTK ( #344260 )
2024-09-26 13:21:06 +02:00
Peder Bergebakken Sundt
8a7b35c6ef
wakapi: 2.11.2 -> 2.12.0; modernize ( #340779 )
2024-09-26 02:49:27 +02:00
Connor Baker
47eb919436
opencv: misc cleanups; fix CUDA build ( #339619 )
2024-09-25 15:52:41 -07:00
Austin Horstman
cadf53ea4d
deno: move to by-name
2024-09-25 22:05:11 +02:00
Sandro
7da9f66ccb
taler-{sync,challenger}: add aliases ( #339528 )
2024-09-25 20:43:06 +02:00
eljamm
7edb25d284
taler-{sync,challenger}: add aliases
...
Followup from #338184
2024-09-25 16:40:35 +01:00
Nick Cao
137a180888
gitea-actions-runner: 0.2.10 -> 0.2.11 ( #344285 )
2024-09-25 08:21:35 -04:00
6543
593f744926
softether: format and move to new pkgs/by-name structure
2024-09-25 11:15:22 +02:00
Peder Bergebakken Sundt
f0420b5ab1
ejs: 3.1.9 -> 3.1.10 ( #343876 )
2024-09-25 10:54:08 +02:00
Peder Bergebakken Sundt
b0be237aa2
bloaty: 1.1-unstable-2023-11-06 -> 1.1-unstable-2024-09-23 ( #343872 )
2024-09-25 10:51:40 +02:00
wxt
d53f42a522
cargo2junit: nixfmt; move to by-name
2024-09-25 10:43:16 +02:00
Peder Bergebakken Sundt
b3592680f3
thumbdrives: 0.3.1 -> 0.3.2 ( #343964 )
2024-09-25 10:41:35 +02:00
Peder Bergebakken Sundt
9d274bbed8
amberol: 0.10.3 -> 2024.1 ( #344195 )
2024-09-25 10:37:12 +02:00
Fabian Affolter
5c942a7f07
cnspec: 11.19.0 -> 11.23.0 ( #344281 )
2024-09-25 10:06:47 +02:00
Fabian Affolter
a3eabb5789
gowitness: 2.5.1 -> 3.0.3 ( #344296 )
2024-09-25 10:06:37 +02:00
Jonas Chevalier
5e04137efd
fahcontrol, fahviewer: drop ( #344254 )
2024-09-25 09:28:56 +02:00
Fabian Affolter
685c9078be
python312Packages.pyunifiprotect: remove ( #304195 )
2024-09-25 09:12:42 +02:00
Fabian Affolter
470954b86f
grype: 0.80.0 -> 0.80.2 ( #344277 )
2024-09-25 09:07:55 +02:00
Fabian Affolter
38de8fcabc
cyclonedx-gomod: 1.7.0 -> 1.8.0 ( #344288 )
2024-09-25 09:07:29 +02:00
Fabian Affolter
114bbb63eb
gotestwaf: 0.4.19 -> 0.5.5 ( #344286 )
2024-09-25 09:07:15 +02:00
Connor Baker
7edb29bd29
cudaPackages.tests: create tests for OpenCV/Torch ordering
2024-09-25 02:55:35 +00:00
Connor Baker
aa117cc209
opencv: inherit from lib, switch to cmake* helpers, fix CUDA
2024-09-25 02:55:32 +00:00
Pol Dellaiera
962b73a5bc
open-webui: 0.3.21 -> 0.3.28 ( #343205 )
2024-09-25 04:20:14 +02:00
OTABI Tomoya
c7e80fc665
python3Packages.confusable-homoglyphs: init at 3.3.1 ( #343821 )
2024-09-25 09:27:41 +09:00
OTABI Tomoya
25b98619c2
python3Packages.salib: init at 1.5.1 ( #343803 )
2024-09-25 09:27:06 +09:00
OTABI Tomoya
d6bf01d9d0
python3Packages.loompy: init at 3.0.7 ( #344042 )
2024-09-25 09:26:32 +09:00
OTABI Tomoya
1635eccf49
python3Packages.mamba-ssm: init at 2.2.2 ( #341195 )
2024-09-25 09:10:40 +09: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
Fabian Affolter
29a0baf707
gowitness: 2.5.1 -> 3.0.3
...
Changelog: https://github.com/sensepost/gowitness/releases/tag/3.0.3
2024-09-24 22:16:46 +02:00
Fabian Affolter
e3675ab2ec
cyclonedx-gomod: 1.7.0 -> 1.8.0
...
Diff: https://github.com/CycloneDX/cyclonedx-gomod/compare/refs/tags/v1.7.0...v1.8.0
Changelog: https://github.com/CycloneDX/cyclonedx-gomod/releases/tag/v1.8.0
2024-09-24 21:53:25 +02:00
Fabian Affolter
1b1ad08cdb
gotestwaf: 0.4.19 -> 0.5.5
...
Diff: https://github.com/wallarm/gotestwaf/compare/refs/tags/v0.4.19...v0.5.5
Changelog: https://github.com/wallarm/gotestwaf/releases/tag/v0.5.5
2024-09-24 21:47:31 +02:00
Fabian Affolter
dc326aed05
cnspec: 11.19.0 -> 11.23.0
...
Diff: https://github.com/mondoohq/cnspec/compare/refs/tags/v11.19.0...v11.23.0
Changelog: https://github.com/mondoohq/cnspec/releases/tag/v11.23.0
2024-09-24 21:35:30 +02:00
Fabian Affolter
c73892df3f
grype: 0.80.0 -> 0.80.2
...
Diff: anchore/grype@refs/tags/v0.80.0...v0.80.2
Changelog: https://github.com/anchore/grype/releases/tag/v0.80.2
2024-09-24 21:27:44 +02:00
techknowlogick
67f0c63700
gitea-actions-runner: move to pkgs/by-name
2024-09-24 15:17:25 -04:00
Kierán Meinhardt
6ce7cb859e
python3Packages.cltk: init at 1.3.0
2024-09-24 20:29:39 +02:00
Kierán Meinhardt
05f6d87a01
python3Packages.greek-accentuation: init at 1.2.0
2024-09-24 20:25:19 +02:00
Lin Jian
6978cd6424
emacs28-gtk2: remove ( #343355 )
2024-09-25 02:22:37 +08:00
Théo Bori
857db009bc
python3Packages.loompy: init at 3.0.7
2024-09-24 19:55:53 +02:00
Théo Bori
347eeaa07b
python3Packages.salib: init at 1.5.1
2024-09-24 19:49:00 +02:00
Pascal Bach
1adf6de480
python312Packages.colbert-ai: init at 0.2.21
2024-09-24 19:24:26 +02:00
Robert Schütz
7af822248d
fahviewer: drop
...
The build fails with
error: cannot download fahviewer_7.6.21_amd64.deb from any mirror
2024-09-24 10:21:45 -07:00
Robert Schütz
ac307ce07e
fahcontrol: drop
...
The build fails with
error: cannot download fahcontrol_7.6.21-1_all.deb from any mirror
2024-09-24 10:19:30 -07:00
Alex Jackson
471b57a254
python3Packages.confusable-homoglyphs: init at 3.3.1
2024-09-24 10:07:06 -05:00
Sandro
493864d69c
gepetto-viewer: init at 5.1.0 ( #324018 )
2024-09-24 16:46:12 +02:00
linsui
b9c9235842
amberol: migrate to by-name
2024-09-24 19:35:52 +08:00
Guilhem Saurel
e4b87b0a60
gepetto-viewer-corba: init at 5.8.0
2024-09-24 12:38:07 +02:00
Guilhem Saurel
7f83e6f787
gepetto-viewer: init at 5.1.0
2024-09-24 12:38:06 +02:00
Alois Wohlschlager
59ca239d1a
replaceDirectDependencies: split off from replaceDependencies
...
This allows both swapping out and reusing the rewrite machinery.
2024-09-24 12:20:15 +02:00