Commit Graph

174 Commits

Author SHA1 Message Date
Aleksana
8af17d7553
artalk: 2.9.0 -> 2.9.1 (#347926) 2024-10-27 17:39:22 +08:00
DontEatOreo
1582530fed
arc-browser: 1.65.0-54911 -> 1.66.0-55166
Changelog: https://arc.net/e/00D675DF-0127-4340-9396-9616BEB71E57
2024-10-25 10:32:50 +00:00
DontEatOreo
42fbc7de66
arc-browser: remove set -euo pipefail
`writeShellApplication` already sets `errexit`, `nounset`, and
`pipefail` by default

Refs: https://nixos.org/manual/nixpkgs/stable/#trivial-builder-writeShellApplication
2024-10-21 16:23:58 +03:00
DontEatOreo
bbf17bf314
arc-browser: quote paths 2024-10-21 16:22:07 +03:00
DontEatOreo
ef9880fdd6
arc-browser: format with nixfmt-rfc-style 2024-10-21 16:21:37 +03:00
DontEatOreo
1c2e39c955
arc-browser: 1.63.1-54714 -> 1.65.0-54911
Changelog: https://arc.net/e/9381EB14-7838-48AB-941B-82CB5CF94627
2024-10-21 13:16:44 +00:00
Peder Bergebakken Sundt
6125359681
archivemount: 0.9.1 -> 1 (#344990) 2024-10-19 05:21:52 +02:00
R. Ryantm
924cf63ceb art: 1.23 -> 1.24.1 2024-10-18 12:20:38 +00:00
Moraxyc
42b355a908
artalk: 2.9.0 -> 2.9.1 2024-10-17 00:04:17 +08:00
DontEatOreo
257097bd62
arc-browser: 1.61.2-54148 -> 1.63.1-54714
Changelog: https://arc.net/e/8554E66E-831C-459A-B6C9-1E814AA5CCD8
2024-10-13 14:09:32 +03:00
github-actions[bot]
4433a315bd
Merge master into staging-next 2024-10-12 12:05:08 +00:00
Florian
18a306afc1
arti: 1.2.7 -> 1.2.8 (#346202) 2024-10-12 09:38:35 +02:00
github-actions[bot]
5c3e5ec59f
Merge master into staging-next 2024-10-06 12:05:15 +00:00
OTABI Tomoya
1eb9b5739d
arduino-ide: 2.3.2 -> 2.3.3 (#344426) 2024-10-06 17:31:13 +09:00
github-actions[bot]
13400dc754
Merge master into staging-next 2024-10-05 06:04:21 +00:00
Emily
815287fb19 arcan: add upstream patch for FFmpeg 7 2024-10-03 21:27:29 +01:00
Emily
ef7d970a8b arcan: 0.6.3 -> 0.6.3.3 2024-10-03 21:27:08 +01:00
Viorel-Cătălin Răpițeanu
26de7d1cbf arti: 1.2.7 -> 1.2.8
Update the package to the latest version.
Remove from skipped 1 test that was fixed.
2024-10-03 19:12:54 +03:00
DontEatOreo
9c168f7c8d
arc-browser: 1.61.0-53949 -> 1.61.2-54148
Changelog: https://arc.net/e/3661425B-9A2A-4947-B64C-6599CF11FE53
2024-10-02 18:26:06 +03:00
Viorel-Cătălin Răpițeanu
71fd6fec9b arti: add rapiteanu as maintainer 2024-09-28 23:46:22 +03:00
Viorel-Cătălin Răpițeanu
e28e945f4b arti: modernize derivation
Removed 'with lib;' from meta.
2024-09-28 23:44:43 +03:00
Viorel-Cătălin Răpițeanu
a41d7b3b26 arti: formatted via nixfmt-rfc-style 2024-09-28 23:44:42 +03:00
Viorel-Cătălin Răpițeanu
5136e375f2 arti: move to by-name
Move the package to the new by-name structure.
2024-09-28 23:44:36 +03:00
Keto
2d19e4a770
archivemount: 0.9.1 -> 1 2024-09-27 22:37:00 -04:00
Keto
256d33ba46
archivemount: Migrate to by-name 2024-09-27 22:25:00 -04:00
Connor Baker
ed96506b5d
Color transformation language init (#338697) 2024-09-27 08:39:10 -07:00
R. Ryantm
4437f87633 arduino-ide: 2.3.2 -> 2.3.3 2024-09-25 12:20:39 +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
DontEatOreo
8acb91888a
arc-browser: 1.58.1-53264 -> 1.61.0-53949
Changelog: https://arc.net/e/2ADFA60D-66AF-42A2-9775-DA1E8152D050
2024-09-20 19:49:49 +03:00
h7x4
9a6c76c4af
treewide: remove unused inputs (#342672) 2024-09-19 20:36:18 +02:00
Peder Bergebakken Sundt
8c8c27bb19 treewide: remove unused inputs 2024-09-18 01:00:07 +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
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
Mica Semrick
4539588dd5 art: update dependencies. 2024-09-10 18:55:50 -07:00
Moraxyc
3a8f76141e
artalk: fix ui hash 2024-09-04 13:53:43 +08:00
R. Ryantm
7e2831e2ba artalk: 2.8.7 -> 2.9.0 2024-09-04 03:41:09 +00:00
Adam C. Stephens
389ff531e7
armitage: substitute --replace with --replace-fail (#337270) 2024-09-02 20:33:10 -04:00
DontEatOreo
7a16ca4e1d
arc-browser: 1.55.0-52417 -> 1.58.1-53264
Changelog: https://arc.net/e/123493AC-A3B7-470F-BC09-DC700B348B59
2024-08-31 17:14:41 +03:00
Guanran Wang
f1d85d1db3
arkenfox-userjs: 126.1 -> 128.0 2024-08-26 19:55:09 +08:00
Roland Coeurjoly
31ae1b3e04 armitage: substitute --replace with --replace-fail 2024-08-25 17:28:27 +02:00
Peder Bergebakken Sundt
215b697080
Merge pull request #333193 from luftmensch-luftmensch/ardugotools_0.6.1
ardugotools: 0.6.0 -> 0.6.1
2024-08-18 02:10:23 +02:00
Peder Bergebakken Sundt
e471916645
treewide: passthru nixos test (#334491) 2024-08-18 00:29:43 +02:00
Nick Cao
3819b56196
Merge pull request #335362 from r-ryantm/auto-update/argc
argc: 1.20.0 -> 1.20.1
2024-08-17 14:22:09 -04:00
éclairevoyant
020e42a3c6
Merge pull request #324452 from DrymarchonShaun/arma3-unix-launcher-init
arma3-unix-launcher: init at 413
2024-08-17 15:05:48 +00:00
R. Ryantm
2bd355f42a argc: 1.20.0 -> 1.20.1 2024-08-17 12:35:23 +00:00
Sebastián Mancilla
2ada75024e
Merge pull request #328257 from r-ryantm/auto-update/arxiv-latex-cleaner
arxiv-latex-cleaner: 1.0.6 -> 1.0.8
2024-08-15 22:42:04 -04:00
Donovan Glover
f4c1937ea0
Merge pull request #334163 from SFrijters/arduino-cli-1.0.4
arduino-cli: 1.0.3 -> 1.0.4
2024-08-14 03:11:27 +00:00
Nick Cao
1e2364cc55
Merge pull request #333967 from DontEatOreo/update-arc-browser
arc-browser: 1.52.0-51895 -> 1.55.0-52417
2024-08-12 21:35:16 -04:00
Stefan Frijters
64b6b7a761
arduino-cli: 1.0.3 -> 1.0.4 2024-08-12 17:10:58 +02:00
DontEatOreo
60cc129239
arc-browser: 1.52.0-51895 -> 1.55.0-52417
Changelog: https://arc.net/e/AEBAABB9-CB6E-4F9A-9E58-7715F8FDFC9B
2024-08-11 21:37:40 +03:00