Commit Graph

132 Commits

Author SHA1 Message Date
Maciej Krüger
53f8ab1949
shadps4: 0.3.0-unstable-2024-10-14 -> 0.4.0 (#352770) 2024-11-04 14:33:05 +01:00
Aleksana
af46f3fc80
shortwave: 3.2.0 -> 4.0.1, move to by-name (#352786) 2024-11-02 16:26:21 +08:00
GetPsyched
d808f09e2b
shadcn: fix build error
pnpmWorkspace was renamed to pnpmWorkspaces in #350751
2024-11-01 14:29:18 +04:00
Aleksana
69f4579c91
shadcn: init at 2.0.3 (#340035) 2024-11-01 17:47:05 +08:00
zendo
27169a4e72 shortwave: 3.2.0 -> 4.0.1 2024-11-01 12:33:14 +08:00
zendo
6fafd05b54 shortwave: move to by-name 2024-11-01 11:56:51 +08:00
Ryan Omasta
67ba2ae745
shadps4: 0.3.0-unstable-2024-10-14 -> 0.4.0 2024-10-31 21:00:20 -06:00
Weijia Wang
45ac221cfc
shotcut: 24.09.13 -> 24.10.13 (#345541) 2024-11-01 03:55:40 +01:00
Gaétan Lepage
a35398ff4b
shaka-packager: 3.2.0 -> 3.3.0 (#351014) 2024-10-31 15:45:29 +01:00
Niklas Korz
6effeaf894 shaka-packager: remove with lib; expressions 2024-10-31 11:14:22 +01:00
Aleksana
12e21b4e3c
sherlock: update meta.homepage (#352451) 2024-10-31 17:12:20 +08:00
AwesomeQubic
685745c5de sherlock: update homepage 2024-10-30 20:59:29 +01:00
R. Ryantm
17bef58900 shopify-cli: 3.67.1 -> 3.69.3 2024-10-30 00:30:07 +00:00
Niklas Korz
04883e8f1c shaka-packager: 3.2.1 -> 3.3.0 2024-10-28 20:48:26 +01:00
Niklas Korz
667692b325 shaka-packager: 3.2.0 -> 3.2.1 2024-10-24 22:17:03 +02:00
Jörg Thalheim
48daff0bdc
shanggu-fonts: make installPhase more readable (#350414) 2024-10-22 11:18:49 +02:00
Jörg Thalheim
84a9c95794 shanggu-fonts: make installPhase more readable
in https://github.com/NixOS/nixpkgs/pull/350296/files#r1809338555 I was
scratching my head what is going on.
2024-10-22 08:59:00 +02:00
R. Ryantm
bece71d248 shotcut: 24.09.13 -> 24.10.13 2024-10-20 09:17:20 +00:00
R. Ryantm
e1e4c0f474 shpool: 0.7.1 -> 0.8.0 2024-10-20 01:17:35 +00:00
R. Ryantm
68ef45a759 shadps4: 0.3.0-unstable-2024-10-13 -> 0.3.0-unstable-2024-10-14 2024-10-15 02:43:24 +00:00
Cosima Neidahl
4c62505847
shadps4: init at 0.3.0-unstable-2024-10-13 (#340215) 2024-10-14 23:53:02 +02:00
Ryan Omasta
7a30e57ad2
shadps4: init at 0.3.0-unstable-2024-10-13 2024-10-14 13:39:18 -06:00
Peder Bergebakken Sundt
85813b7cfe
shopify-cli: 3.63.2 -> 3.67.1 (#343980) 2024-10-06 18:08:58 +02:00
Nick Cao
ccc902e60f
shanggu-fonts: 1.020 -> 1.021 (#346794) 2024-10-06 09:49:06 -04:00
Sandro
915af63a65
shaka-packager: 2.6.1 -> 3.2.0 (#301846) 2024-10-06 14:03:53 +02:00
Cryolitia PukNgae
3a046a7fb8
shanggu-fonts: 1.020 -> 1.021 2024-10-06 11:50:42 +08:00
Niklas Korz
c7592b7125 shaka-packager: move to pkgs/by-name 2024-09-30 20:59:37 +02:00
Peder Bergebakken Sundt
f469b91544
treewide: drop explicitly added pythonRelaxDepsHook (#341842) 2024-09-27 01:13:09 +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
Simon Menke
0553db553f
shopify-cli: 3.63.2 -> 3.67.1 2024-09-23 16:53:02 +02:00
R. Ryantm
ea736101cd shotcut: 24.08.29 -> 24.09.13 2024-09-21 20:01:59 +00:00
R. Ryantm
00347a54a7 showmethekey: 1.13.1 -> 1.14.0 2024-09-20 20:04:48 +00:00
Aleksana
a2cad4db0b
treewide: migrate packages to by-name (#341412) 2024-09-17 11:17:16 +08:00
Peder Bergebakken Sundt
0d27697f2f shpool: 0.7.0 -> 0.7.1
Diff: https://github.com/shell-pool/shpool/compare/v0.7.0...v0.7.1
2024-09-16 20:25:16 +02:00
Anderson Torres
f0e64ce16f treewide: migrate packages maintained by AndersonTorres to by-name
Manual migration for the sake of by-name migration is no longer discouraged
since #340235.
2024-09-16 14:26:47 -03:00
Nick Cao
0106a3ce4c
sherlock: drop pythonRelaxDepsHook 2024-09-16 10:33:34 -04: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
GetPsyched
6eae42e744
shadcn: init at 2.0.3 2024-09-13 06:18:39 +05:30
Aleksana
4602d11e62
shpool: 0.6.3 -> 0.7.0 (#339300) 2024-09-09 23:15:57 +08:00
Nick Cao
30c45bb1fb
shellcheck-sarif: 0.6.5 -> 0.6.6 (#340008) 2024-09-07 09:52:46 -04:00
R. Ryantm
07b9d93fd0 shellcheck-sarif: 0.6.5 -> 0.6.6 2024-09-06 07:04:45 +00:00
R. Ryantm
0deda63f06 shpool: 0.6.3 -> 0.7.0 2024-09-03 17:23:56 +00:00
Nadir Ishiguro
b598d8cf91
shotcut: 24.06.26 -> 24.08.29 2024-09-03 17:05:34 +02:00
Aleksana
d049c8d1cc
Merge pull request #318197 from getchoo/pkgs/showtime/init
showtime: init at 46.3
2024-08-26 11:52:13 +08:00
R. Ryantm
8941744d24 shell-gpt: 1.4.3 -> 1.4.4 2024-08-16 19:15:39 +00:00
Fabián Heredia Montiel
03bd12dcf8
Merge pull request #333721 from eclairevoyant/shotcut-wl
shotcut: move to by-name, reformat, add wl support
2024-08-15 17:25:22 -06:00
Emery Hemingway
04331f0eab shapelib: add meta.changelog 2024-08-15 09:06:37 +00:00
Ivan Mincik
bdf14f104b shapelib: move to by-name 2024-08-15 09:06:37 +00:00
Donovan Glover
4cd1ed1658
Merge pull request #333115 from ryand56/update/sherlock
sherlock: 0-unstable-2024-06-09 -> 0.15.0
2024-08-14 04:12:52 +00:00
R. Ryantm
6666a0a5ff shellcheck-sarif: 0.6.0 -> 0.6.5 2024-08-10 23:18:24 +00:00