Reno Dakota
52bf1163fa
treewide: use getLib when accessing clang / libclang / stdenv.cc.cc
...
In preparation to eliminate the lib output for the unwrapped clang, use
`lib.getLib` to access the `lib` output.
2024-11-07 10:27:41 +00:00
Infinidoge
94662991db
vencord: 1.10.5 -> 1.10.6
2024-11-06 00:28:32 -05:00
Peder Bergebakken Sundt
dc227b12af
veryl: 0.13.1 -> 0.13.2 ( #352567 )
2024-11-05 12:45:56 +01:00
DontEatOreo
6fde6162a2
vesktop: fix darwin extension .App
-> .app
2024-11-02 23:19:51 +02:00
R. Ryantm
b84e58eb87
versatiles: 0.12.10 -> 0.13.0
2024-10-31 05:35:05 +00:00
Peder Bergebakken Sundt
12e303d121
veryl: 0.13.1 -> 0.13.2
...
Diff: https://github.com/veryl-lang/veryl/compare/v0.13.1...v0.13.2
Changelog: https://github.com/veryl-lang/veryl/blob/v0.13.2/CHANGELOG.md
2024-10-30 23:01:43 +01:00
Henner Zeller
e629e4de20
verible: 0.0.3791 -> 0.0.3836
2024-10-27 12:45:59 -07:00
Henner Zeller
cb606f7603
verible: run formatter.
2024-10-27 11:39:44 -07:00
Stig
c105d9b506
vep: init at 110 ( #283317 )
2024-10-27 15:13:14 +00:00
Aleksana
786eb00dab
versatiles: init at 0.12.10 ( #350343 )
2024-10-27 22:26:27 +08:00
Ronja Schwarz
caad3ec530
versatiles: init at 0.12.10
...
versatiles: adding changelog link
versatiles: added recommended changes
versatiles: Changed description
2024-10-27 10:50:22 +01:00
Alexis Praga
f7dea4207f
vep: init at 110
...
Version number use Ensembl major version.
2024-10-27 09:45:26 +01:00
DontEatOreo
71fc5743a8
vencord: add maintainer donteatoreo
2024-10-24 18:26:15 +03:00
DontEatOreo
be43e12f91
vencord: 1.10.4 -> 1.10.5
...
Diff: https://github.com/Vendicated/Vencord/compare/v1.10.4...v1.10.5
2024-10-24 15:13:36 +00:00
Peder Bergebakken Sundt
56783f8200
velero: use stdenv.buildPlatform.canExecute
2024-10-21 11:34:21 +02:00
Gutyina Gergő
9744efc3b0
treewide: update pnpmDeps hashes
2024-10-19 23:50:41 +02:00
Peder Bergebakken Sundt
35325ecea9
veryl: add shell completions
2024-10-11 23:51:45 +02:00
Peder Bergebakken Sundt
4cbccd4923
veryl: 0.13.0 -> 0.13.1
...
Diff: https://github.com/veryl-lang/veryl/compare/v0.13.0...v0.13.1
Changelog: https://github.com/veryl-lang/veryl/blob/v0.13.1/CHANGELOG.md
2024-10-11 23:33:46 +02:00
R. Ryantm
dced718864
vencord: 1.10.3 -> 1.10.4
2024-10-09 08:14:18 +00:00
h7x4
51cacf4965
verapdf: init at 1.26.2 ( #342508 )
2024-09-30 19:25:53 +02:00
Sandro
a968fa0376
veracrypt: 1.26.7 -> 1.26.15 ( #344488 )
2024-09-30 13:43:57 +02:00
R. Ryantm
b87c518e5c
vencord: 1.10.2 -> 1.10.3
2024-09-30 04:51:05 +00:00
Ryan Omasta
3f03d48cd3
veracrypt: 1.26.14 -> 1.26.15
2024-09-28 16:03:34 -06:00
Moritz Hedtke
1b3e725693
verapdf: init at 1.26.2
...
Co-authored-by: kilianar <mail@kilianar.de>
2024-09-28 14:30:29 +02:00
Ryan Omasta
ef7956291f
veracrypt: remove with lib;
, add myself as maintainer
2024-09-25 11:42:24 -06:00
Ryan Omasta
202021faf6
veracrypt: format using nixfmt-rfc-style
2024-09-25 11:41:20 -06:00
Ryan Omasta
051f75f1a9
veracrypt: 1.26.7 -> 1.26.14, move to pkgs/by-name
2024-09-25 11:38:22 -06:00
Peder Bergebakken Sundt
b8d6935a7a
veryl: init at 0.13.0 ( #342132 )
2024-09-25 01:13:29 +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
Aleksana
d5909a6e26
verible: 0.0.3747 -> 0.0.3791 ( #342826 )
2024-09-22 17:03:18 +08:00
R. Ryantm
7be9dd1366
vencord: 1.10.1 -> 1.10.2
2024-09-21 04:19:55 +00:00
Henner Zeller
93270ba5de
verible: 0.0.3747 -> 0.0.3791
2024-09-18 08:42:10 -07:00
nicoo
45b95421fd
lib.fetchers: add hash-normalization helpers ( #342072 )
2024-09-17 14:59:43 +00:00
nicoo
0bddcc1df9
verible: sha256
→ hash
2024-09-17 06:34:08 +00:00
Peder Bergebakken Sundt
8dd43e731e
veryl: init at 0.13.0
2024-09-15 21:35:37 +02:00
nicoo
2641d97cbf
pkgs/by-name: Convert hashes to SRI format
...
Reproduction script:
# Bulk rewrite
./maintainers/scripts/sha-to-sri.py pkgs/by-name
# Revert some packages which will need manual intervention
for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
git checkout -- "pkgs/by-name/${n:0:2}/${n}"
done
2024-09-15 11:24:31 +02:00
Johannes Jöns
5690cd67f5
vencord: 1.9.5 -> 1.10.1 ( #332423 )
2024-09-07 20:20:59 +00:00
Sefa Eyeoglu
176bc2d30b
vencord: 1.9.9 -> 1.10.1
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-09-05 21:00:30 +02:00
Sefa Eyeoglu
dc011c71a6
vencord: 1.9.8 -> 1.9.9
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-09-03 22:27:19 +02:00
Nikolay Korotkiy
3397a57a53
velero: migrate to by-name
2024-09-01 17:01:01 +04:00
github-actions[bot]
59b57346d9
Merge master into staging-next
2024-08-28 18:04:19 +00:00
TomaSajt
1fad8f3463
vesktop: use electron.dist
2024-08-27 21:37:18 +02:00
Sefa Eyeoglu
4309219691
vencord: 1.9.7 -> 1.9.8
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-08-27 10:49:11 +02:00
Sefa Eyeoglu
877d23c6b2
vencord: fix update script
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-08-27 10:47:09 +02:00
Sefa Eyeoglu
a76791c8b3
vencord: sort inputs
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-08-27 09:15:17 +02:00
Sefa Eyeoglu
4e205841fb
vencord: fix installPhase hooks
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-08-27 09:15:17 +02:00
Sefa Eyeoglu
1401c61030
vencord: 1.9.5 -> 1.9.7
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-08-27 09:15:17 +02:00
Sefa Eyeoglu
09e917c6d4
vencord: reformat using nixfmt
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-08-27 09:15:17 +02:00
Sefa Eyeoglu
29bc58a302
vencord: refactor to use pnpm.fetchDeps
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-08-27 09:15:17 +02:00
Peder Bergebakken Sundt
8050fb8db8
Merge pull request #335142 from doronbehar/pkg/versionCheckHook
...
versionCheckHook: ignore echoed store paths
2024-08-19 02:12:56 +02:00