Commit Graph

122 Commits

Author SHA1 Message Date
github-actions[bot]
d6721ede31
Merge master into staging-next 2024-11-13 12:05:52 +00:00
Weijia Wang
4f10285eed
brave: darwin support, add darwin maintainer (#352880) 2024-11-13 10:41:19 +01:00
github-actions[bot]
00b1e226f7
Merge master into staging-next 2024-11-12 06:05:05 +00:00
Aleksana
1a5d2f84b7
bruno-cli: init at 1.34.2 (#354111) 2024-11-12 10:21:31 +08:00
Matteo Pacini
c00f07313f brave: add darwin maintainer 2024-11-11 21:08:35 +00:00
Matteo Pacini
861af0f60d brave: darwin support 2024-11-11 21:08:15 +00:00
Gutyina Gergő
358c74b332
bruno-cli: init at 1.34.2 2024-11-10 22:55:16 +01:00
github-actions[bot]
aa759748db
Merge master into staging-next 2024-11-10 18:03:58 +00:00
Theodore Ni
4fee2cde56
brave: 1.71.121 -> 1.71.123; refactor and nixfmt-rfc-style (#354114) 2024-11-10 09:46:15 -08:00
Sean Buckley
7135b364b6 brave: 1.71.121 -> 1.71.123
https://community.brave.com/t/release-channel-1-71-123/579271
2024-11-09 19:40:54 -05:00
Sean Buckley
301751f1c1 brave: format with nixfmt-rfc-style 2024-11-09 19:40:54 -05:00
Sean Buckley
d037904ba3 brave: refactor package.nix to allow more architectures 2024-11-09 19:40:49 -05:00
Emily
ce788776a5 Merge master into staging-next 2024-11-09 12:51:01 +00:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00
Gutyina Gergő
01310793c8
bruno: postBuild -> buildPhase 2024-11-07 22:41:21 +01:00
Gutyina Gergő
cc0b65fb04
bruno: add back giflib removal patch 2024-11-07 01:37:53 +01:00
Gutyina Gergő
582038c397
bruno: remove with lib;, order meta attrs 2024-11-07 00:58:36 +01:00
Gutyina Gergő
f90a7c4dbd
bruno: 1.34.0 -> 1.34.2 2024-11-07 00:20:32 +01:00
Gutyina Gergő
56878d1449
bruno: remove phantomjs 2024-11-07 00:16:13 +01:00
Austin Horstman
a685fde6db
bruno: switch to apple-sdk_11 2024-11-04 16:27:05 -06:00
Heitor Augusto
6760f0a702
brave: fix qt theming (#352667)
Previously when trying to choose "Use Qt" for the brave theme, it just
did nothing, this should fix it, and properly theme it with Qt
2024-11-04 20:25:21 +01:00
Sefa Eyeoglu
a61cd8ff1b
browsers: 0.5.8 -> 0.6.0 (#343763) 2024-11-04 16:55:45 +01:00
RAVENz46
e299dffa9e browsers: 0.5.8 -> 0.6.0
browsers: 0.5.8 -> 0.6.0

Update Cargo.lock

Fix version

Fix

format
2024-11-03 19:21:39 +09:00
R. Ryantm
ab77e62996 brave: 1.71.118 -> 1.71.121 2024-10-31 22:42:32 +00:00
Mathew Polzin
6ee97571ae bruno: 1.32.1 -> 1.34.0 2024-10-25 22:09:42 -05:00
Sean Buckley
9922167c89 brave: 1.70.123 -> 1.71.118
https://community.brave.com/t/release-channel-1-71-118/576979
2024-10-23 17:28:18 -04:00
Sean Buckley
177d045fb3 brave: move to by-name 2024-10-23 17:28:18 -04:00
R. Ryantm
0340112158 bruno: 1.30.1 -> 1.32.1 2024-10-07 22:08:41 +00:00
R. Ryantm
aba3aa7fca brainflow: 5.13.3 -> 5.14.0 2024-10-02 14:27:12 +00:00
R. Ryantm
15f168528a bruno: 1.29.1 -> 1.30.1 2024-09-29 23:48:11 +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
R. Ryantm
7bc70fd744 bruno: 1.28.0 -> 1.29.1 2024-09-20 07:46:58 +00: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
Gavin John
dbd0ce7a17
brainflow: 5.13.2 -> 5.13.3 2024-09-11 16:52:38 +00:00
Peder Bergebakken Sundt
73b9ffd7a9
brainflow: 5.12.1 -> 5.13.2 (#338265) 2024-09-08 00:20:15 +02:00
Mathew Polzin
033d2de8ca
bruno: 1.25.0 -> 1.28.0 (#339769) 2024-09-06 21:38:08 -05:00
kirillrdy
a46eb796d5
browsers: init at 0.5.8 (#338358) 2024-09-07 06:24:49 +10:00
Gutyina Gergő
72ac9a149a
bruno: 1.25.0 -> 1.28.0 2024-09-06 16:49:02 +02:00
RAVENz46
de1ce93942 browsers: init at 0.5.8
Fix homepage

Some fix

Fix error

Fix rev

replace -> replace-fail

Remove darwin support

Run formatter
2024-09-03 19:32:08 +09:00
Philip Taron
1b9af797ec
breakpointHook: move to by-name, mark broken instead of asserting 2024-08-30 15:03:42 -07:00
Gavin John
6b6892dbed
brainflow: 5.12.1 -> 5.13.2 2024-08-29 13:55:54 -07:00
TomaSajt
cade99381b
bruno: use electron.dist 2024-08-27 21:37:14 +02:00
Peder Bergebakken Sundt
fcdecc256a
treewide: change ${pname} to string literal (#336172)
* adwaita-icon-theme: change `${pname}` to string literal

* alp: change `${pname}` to string literal

* alsa-oss: change `${pname}` to string literal

* alsa-plugins: change `${pname}` to string literal

* alsa-ucm-conf: change `${pname}` to string literal

* alsa-utils: change `${pname}` to string literal

* anyrun: change `${pname}` to string literal

* assemblyscript: change `${pname}` to string literal

* audiobookshelf: change `${pname}` to string literal

* baobab: change `${pname}` to string literal

* braa: change `${pname}` to string literal

* brill: change `${pname}` to string literal

* centrifugo: change `${pname}` to string literal

* cheese: change `${pname}` to string literal

* cljfmt: change `${pname}` to string literal

* coppwr: change `${pname}` to string literal

* cosmic-edit: change `${pname}` to string literal

* cosmic-files: change `${pname}` to string literal

* cosmic-store: change `${pname}` to string literal

* cosmic-term: change `${pname}` to string literal

* crate2nix: change `${pname}` to string literal

* cups-kyocera-3500-4500: change `${pname}` to string literal

* dbqn: change `${pname}` to string literal

* dconf-editor: change `${pname}` to string literal

* devhelp: change `${pname}` to string literal

* dmarc-report-converter: change `${pname}` to string literal

* engage: change `${pname}` to string literal

* eog: change `${pname}` to string literal

* evolution-data-server-gtk4: change `${pname}` to string literal

* find-billy: change `${pname}` to string literal

* firefly-iii: change `${pname}` to string literal

* fuchsia-cursor: change `${pname}` to string literal

* geary: change `${pname}` to string literal

* ghex: change `${pname}` to string literal

* gitg: change `${pname}` to string literal

* glasskube: change `${pname}` to string literal

* gnome.gnome-autoar: change `${pname}` to string literal

* gnome.gnome-calculator: change `${pname}` to string literal

* gnome.gnome-calendar: change `${pname}` to string literal

* gnome.gnome-common: change `${pname}` to string literal

* gnome.gnome-dictionary: change `${pname}` to string literal

* gnome.gnome-disk-utility: change `${pname}` to string literal

* gnome.gnome-font-viewer: change `${pname}` to string literal

* gnome.gnome-keyring: change `${pname}` to string literal

* gnome.gnome-screenshot: change `${pname}` to string literal

* gnome.gnome-system-monitor: change `${pname}` to string literal

* gnome.seahorse: change `${pname}` to string literal

* gnome.simple-scan: change `${pname}` to string literal

* gnome.sushi: change `${pname}` to string literal

* gnome.totem: change `${pname}` to string literal

* gnome.yelp: change `${pname}` to string literal

* gnome.yelp-xsl: change `${pname}` to string literal

* gnucap-full: change `${pname}` to string literal

* goredo: change `${pname}` to string literal

* guile-semver: change `${pname}` to string literal

* halo: change `${pname}` to string literal

* intiface-central: change `${pname}` to string literal

* intune-portal: change `${pname}` to string literal

* iscc: change `${pname}` to string literal

* jetbrains-toolbox: change `${pname}` to string literal

* jnr-posix: change `${pname}` to string literal

* keymapp: change `${pname}` to string literal

* libation: change `${pname}` to string literal

* libeduvpn-common: change `${pname}` to string literal

* libmamba: change `${pname}` to string literal

* littlefs-fuse: change `${pname}` to string literal

* logseq: change `${pname}` to string literal

* lxgw-wenkai-tc: change `${pname}` to string literal

* microsoft-identity-broker: change `${pname}` to string literal

* minetest-mapserver: change `${pname}` to string literal

* msalsdk-dbusclient: change `${pname}` to string literal

* neverest: change `${pname}` to string literal

* nf-test: change `${pname}` to string literal

* numbat: change `${pname}` to string literal

* pdf2odt: change `${pname}` to string literal

* plemoljp: change `${pname}` to string literal

* plemoljp-hs: change `${pname}` to string literal

* plemoljp-nf: change `${pname}` to string literal

* pocket-updater-utility: change `${pname}` to string literal

* proto: change `${pname}` to string literal

* pw3270: change `${pname}` to string literal

* ratchet: change `${pname}` to string literal

* read-it-later: change `${pname}` to string literal

* redmine: change `${pname}` to string literal

* regina: change `${pname}` to string literal

* regripper: change `${pname}` to string literal

* revolt-desktop: change `${pname}` to string literal

* rs: change `${pname}` to string literal

* signaturepdf: change `${pname}` to string literal

* sonarlint-ls: change `${pname}` to string literal

* srgn: change `${pname}` to string literal

* stackit-cli: change `${pname}` to string literal

* substudy: change `${pname}` to string literal

* swayosd: change `${pname}` to string literal

* synthesia: change `${pname}` to string literal

* tarlz: change `${pname}` to string literal

* termcap: change `${pname}` to string literal

* tinycompress: change `${pname}` to string literal

* tracexec: change `${pname}` to string literal

* treefmt2: change `${pname}` to string literal

* udev-gothic: change `${pname}` to string literal

* udev-gothic-nf: change `${pname}` to string literal

* vvvvvv: change `${pname}` to string literal

* yggdrasil: change `${pname}` to string literal

* zsync: change `${pname}` to string literal
2024-08-20 15:56:55 -07:00
R. Ryantm
2999500015 bruno: 1.24.0 -> 1.25.0 2024-08-20 07:15:50 +00:00
R. Ryantm
72df0bb844 bruno: 1.23.1 -> 1.24.0 2024-08-12 17:14:03 +00:00
Peder Bergebakken Sundt
44b9b39b0c
Merge pull request #319759 from gepbird/bruno-darwin
bruno: patch out giflib dependency, format
2024-08-11 22:59:47 +02:00
R. Ryantm
3d6b7c23c3 bruno: 1.23.0 -> 1.23.1 2024-08-05 02:26:00 +00:00
redyf
69cbd04283 bruno: 1.22.0 -> 1.23.0
https://github.com/usebruno/bruno/releases/tag/v1.23.0
2024-07-31 11:29:56 -03:00