Commit Graph

214 Commits

Author SHA1 Message Date
Florian Sanders
d8b13b8f8b
clever-tools: rely on bundled package generated through the build script 2024-11-02 18:39:52 +01:00
Florian Sanders
cd4ebf6c81
clever-tools: 3.8.3 -> 3.9.0 2024-11-02 18:30:54 +01:00
Anderson Torres
bcd149f7a5 clerk: migrate to by-name 2024-11-01 20:07:03 -03:00
dr56ekgbb
d8aa5f4178 clash-rs: init at 0.7.0 2024-10-29 21:32:07 +00:00
Gaétan Lepage
6385db14c7
clouddrive2: init at 0.7.21 (#349204) 2024-10-27 17:45:28 +01:00
L-Trump
adef663e98 clouddrive2: init at 0.7.21 2024-10-27 13:54:17 +08:00
xrelkd
008dde73c3
clipcat: 0.18.3 -> 0.19.0 2024-10-26 15:25:04 +08:00
Aleksana
caaaae5e7e
clang-uml: fix --version output (#350575) 2024-10-24 15:22:21 +08:00
PAEPCKE, Michael
8a19882bd9
cliqr: init at 0.1.25 2024-10-24 04:29:10 +00:00
zi3m5f
d74ae64fbb
clang-uml: fix --version output
by setting cmake flag GIT_VERSION:
https://github.com/bkryza/clang-uml/issues/211
Enable `versionCheckHook` and set `meta.mainProgram`.
2024-10-23 17:41:08 +02:00
Aleksana
fa5b7f308c
clipcat: fix build (#350456) 2024-10-23 15:46:15 +08:00
wxt
7fc412404a clipcat: fix build 2024-10-22 18:50:59 +08:00
wxt
fb6b402c3e clipcat: nixfmt 2024-10-22 18:46:46 +08:00
wxt
d9054c25ce clang-uml: fix build 2024-10-22 07:58:07 +08:00
wxt
133fa13c41 clang-uml: nixfmt 2024-10-22 07:58:06 +08:00
Gutyina Gergő
9744efc3b0
treewide: update pnpmDeps hashes 2024-10-19 23:50:41 +02:00
Austin Horstman
49473d4083
cliphist: 0.6.0 -> 0.6.1 2024-10-15 19:22:37 -05:00
Austin Horstman
3f4b6c6f16
cliphist: add update script 2024-10-15 19:13:34 -05:00
Austin Horstman
ea4ca62e96
cliphist: move to by-name 2024-10-15 19:13:34 -05:00
R. Ryantm
e68ba98bc9 cloak-pt: 2.9.0 -> 2.10.0 2024-10-14 03:25:23 +00:00
Peder Bergebakken Sundt
7563af8485
clean-css-cli: 5.6.2 -> 5.6.3 (#346160) 2024-10-14 01:36:16 +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
Nick Cao
576d3a93c5
cloudflare-dynamic-dns: 4.3.3 -> 4.3.5 (#346607) 2024-10-05 09:23:19 -04:00
R. Ryantm
95a3d1d44d cloudflare-dynamic-dns: 4.3.3 -> 4.3.5 2024-10-05 05:30:27 +00:00
savedram
be669ff43d clipse: 1.0.9 -> 1.1.0 2024-10-04 22:11:19 +01:00
Mutsuha Asada
e0945356c7
clean-css-cli: moved to by-name 2024-10-03 21:47:47 +09:00
R. Ryantm
bc8a9fa165 clang-uml: 0.5.4 -> 0.5.5 2024-10-03 06:35:34 +00:00
R. Ryantm
f989ed5fef cljfmt: 0.12.0 -> 0.13.0 2024-10-01 15:31:42 +00:00
Olivér Falvai
dce718aa83
cloudlens: fix darwin build 2024-09-29 21:34:47 +02:00
Weijia Wang
2e06aeca71
clash-nyanpasu: 1.6.0 -> 1.6.1 (#342740) 2024-09-27 00:00:23 +02:00
R. Ryantm
9be3c09dca cloudflare-dynamic-dns: 4.3.2 -> 4.3.3 2024-09-26 06:57:21 +00: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
h7x4
f21ae37d3d
clash-verge: remove (#342557) 2024-09-22 01:41:17 +02:00
zendo
fe0d4615fe clash-verge: remove 2024-09-21 22:31:17 +08:00
Peder Bergebakken Sundt
8aa42ae0d9
treewide: remove CMAKE_BUILD_TYPE from cmakeFlags (#336854) 2024-09-19 22:32:31 +02:00
R. Ryantm
c3a384aca1 clash-nyanpasu: 1.6.0 -> 1.6.1 2024-09-18 07:25:59 +00: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
R. Ryantm
952b83be99 clever-tools: 3.8.2 -> 3.8.3 2024-09-13 16:51:29 +00:00
wxt
2807cd3fac clash-verge-rev: add desktop entry 2024-09-12 12:46:48 +08:00
Aleksana
faeb037228
clash-verge-rev: add meta for internal package (#340771) 2024-09-10 16:14:41 +08:00
wxt
d7423b75c9 clash-verge-rev: add meta for internal package 2024-09-10 12:41:38 +08:00
Weijia Wang
ba2ff9ad6e
clash-nyanpasu: 1.5.1 -> 1.6.0 (#338499) 2024-09-09 20:55:48 +02:00
Aleksana
de10e71833
clash-verge-rev: 1.7.5 -> 1.7.7; clash-verge-rev: build from source; clash-verge-rev: add bot-wxt1221 as maintainers; (#335998) 2024-09-09 11:22:53 +08:00
Aleksana
4749b6f754
clever-tools: remove update notifications (#340516) 2024-09-09 10:29:15 +08:00
Florian Sanders
b6667a4e3e
clever-tools: remove update notifications 2024-09-08 15:46:33 +02:00
Florian Sanders
90913cb175
clever-tools: fix formatting 2024-09-08 15:46:05 +02:00
R. Ryantm
b5c156e568 clippy-sarif: 0.6.5 -> 0.6.6 2024-09-06 07:06:19 +00:00
nixpkgs-merge-bot[bot]
e932f6880c
clang-tidy-sarif: 0.6.5 -> 0.6.6 (#339191) 2024-09-05 17:07:40 +00:00
R. Ryantm
5bc6e8cc37 cloudflare-dynamic-dns: 4.3.0 -> 4.3.2 2024-09-04 12:28:27 +00:00
R. Ryantm
2379f18590 clang-tidy-sarif: 0.6.5 -> 0.6.6 2024-09-03 07:10:46 +00:00