Commit Graph

192 Commits

Author SHA1 Message Date
R. Ryantm
ed4895b4d0 fluent-bit: 3.1.8 -> 3.1.9 2024-10-04 22:08:34 +02:00
h7x4
8f55b011e0
treewide: add meta.changelog (#346488)
* guix: add meta.changelog

* zile: add meta.changelog

* zoom: add meta.changelog

* zotify: add meta.changelog

* zpaqfranz: add meta.changelog

* zunit: add meta.changelog

* zxwing-cpp: add meta.changelog

* zxpy: add meta.changelog

* zydis: add meta.changelog

* zziplib: add meta.changelog

* j: add meta.changelog

* kyua: add meta.changelog

* json2ts: add meta.changelog

* igir: add meta.changelog

* ios-webkit-debug-proxy: add meta.changelog

* gpaste: add meta.changelog

* polkit_gnome: add meta.changelog

* papers: add meta.changelog

* libmsgraph: add meta.changelog

* quadrapassel: add meta.changelog

* gnome-nibbles: add meta.changelog

* decibels: add meta.changelog

* libgedit-amtk: add meta.changelog

* simple-scan: add meta.changelog

* gnome-klotski: add meta.changelog

* gnome-sound-recorder: add meta.changelog

* gnome-remote-desktop: add meta.changelog

* gnome-robots: add meta.changelog

* gnome-shell-extensions: add meta.changelog

* gnome-panel: add meta.changelog

* gnome-session: add meta.changelog

* gnome-keyring: add meta.changelog

* devhelp: add meta.changelog

* libgnome-keyring: add meta.changelog

* ghex: add meta.changelog

* gnome-connections: add meta.changelog

* lightsoff: add meta.changelog

* gnome-flashback: add meta.changelog

* livi: add meta.changelog

* mutter: add meta.changelog

* hitori: add meta.changelog

* gnome-initial-setup: add meta.changelog

* gnome-bluetooth: add meta.changelog

* gnome-shell: add meta.changelog

* gnome-sudoku: add meta.changelog

* ideamaker: add meta.changelog

* i2p: add meta.changelog

* lms: add meta.changelog

* adwaita-icon-theme: add meta.changelog

* gnome-applets: add meta.changelog

* flac123: add meta.changelog

* flaca: add meta.changelog

* flameshot: add meta.changelog

* flaresolverr: add meta.changelog

* a52dec: add meta.changelog

* hexbinhex: add meta.changelog

* dwl: add meta.changelog

* msolve: add meta.changelog

* jcli: add meta.changelog

* nmap: add meta.changelog

* nmapsi4: add meta.changelog

* labctl: add meta.changelog

* _1oom: add meta.changelog

* libipuz: add meta.changelog

* metacity: add meta.changelog

* sushi: add meta.changelog

* rygel: add meta.changelog

* zenity: add meta.changelog

* crosswords: add meta.changelog

* gnome-mahjongg: add meta.changelog

* alacarte: add meta.changelog

* loupe: add meta.changelog

* cheese: add meta.changelog

* atomix: add meta.changelog

* swell-foop: add meta.changelog

* alfis: add meta.changelog

* aperture: add meta.changelog

* atomic-swap: add meta.changelog

* besu: add meta.changelog

* bisq: add meta.changelog

* bitcoin-abc: add meta.changelog

* bitcoin-knots: add meta.changelog

* bitcd: add meta.changelog

* btcdeb: add meta.changelog

* btcpayserver: add meta.changelog

* 86box: add meta.changelog

* darling: add meta.changelog

* dosbox: add meta.changelog

* firebird-emu: add meta.changelog

* maiko: add meta.changelog

* accerciser: add meta.changelog

* adwaita-icon-theme-legacy: add meta.changelog

* dconf-editor: add meta.changelog

* eog: add meta.changelog

* evolution-data-server: add meta.changelog

* file-roller: add meta.changelog

* four-in-a-row: add meta.changelog

* gdm: add meta.changelog

* geary: add meta.changelog

* gitg: add meta.changelog

* gnome2048: add meta.changelog

* gnome-backgrounds: add meta.changelog

* gnome-text-editor: add meta.changelog

* gnome-tour: add meta.changelog

* gnome-user-share: add meta.changelog

* gxml: add meta.changelog

* tali: add meta.changelog

* totem: add meta.changelog

* mobile-broadband-provider-info: add meta.changelog

* avr: add meta.changelog

* brev-cli: add meta.changelog

* juce: add meta.changelog

* loc: add meta.changelog

* resholve: add meta.changelog

* rpiboot: add meta.changelog

* gerbera: add meta.changelog

* kdocker: add meta.changelog

* pmenu: add meta.changelog

* advancecomp: add meta.changelog

* adriconf: add meta.changelog

* interception-tools: add meta.changelog

* nabi: add meta.changelog

* gorilla-cli: add meta.changelog

* heygpt: add meta.changelog

* 6tunnel: add meta.changelog

* aria2: add meta.changelog

* logmein-hamachi: add meta.changelog

* maphosts: add meta.changelog

* qcal: add meta.changelog

* adreaper: add meta.changelog

* aflplusplus: add meta.changelog

* aide: add meta.changelog

* cameradar: add meta.changelog

* wpscan: add meta.changelog

* aha: add meta.changelog

* xcat: add meta.changelog
2024-10-04 22:35:12 +03:00
nixpkgs-merge-bot[bot]
e1519f351c
flarectl: 0.104.0 -> 0.105.0 (#345756) 2024-10-01 20:53:18 +00:00
R. Ryantm
7d89dcaeb2 flarectl: 0.104.0 -> 0.105.0 2024-10-01 19:04:33 +00:00
h7x4
0da9641c50
flatpak: Don't propagate $TZDIR into sandbox (#343704) 2024-10-01 19:32:32 +02:00
Artturin
63fa53d97c treewide: reformat files which need reformatting after
`treewide: replace stdenv.is with stdenv.hostPlatform.is`
2024-09-25 00:04:39 +03: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
97c17485d9 flexget: 3.11.45 -> 3.11.46 2024-09-23 09:41:12 +00:00
claes
a9dcd648d5 flatpak: Don't propagate /etc/zoneinfo into sandbox 2024-09-22 19:11:23 +02:00
seth
801d1d4450
flatpak: use $TZDIR for zoneinfo
Fixes #238386
2024-09-21 17:45:02 -04:00
Franz Pletz
ecc84ee17d
fluent-bit: 3.1.7 -> 3.1.8 (#342446) 2024-09-17 15:01:32 +02:00
R. Ryantm
f185333baa fluent-bit: 3.1.7 -> 3.1.8 2024-09-17 04:26:25 +00: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
Masum Reza
ac315662d2
flexget: 3.11.43 -> 3.11.45 (#341123) 2024-09-16 17:59:01 +05:30
nicoo
4538b56ab5 fluxcd: sha256hash 2024-09-15 11:25:25 +02:00
R. Ryantm
8565e8cd24 flarectl: 0.103.0 -> 0.104.0 2024-09-13 22:42:51 +00:00
Peder Bergebakken Sundt
86df4f6a36 flexget: 3.11.43 -> 3.11.45
Changelog: https://github.com/Flexget/Flexget/releases/tag/v3.11.45
2024-09-12 16:18:06 +02:00
Weijia Wang
9e3d9582b7
flameshot: 12.1.0-unstable-2024-08-02 -> 12.1.0-unstable-2024-09-01 (#339506) 2024-09-11 00:47:45 +02:00
Funkeleinhorn
4b632e63b4
flashprog: add funkeleinhorn as maintainer 2024-09-07 14:33:33 +02:00
Thiago Kenji Okada
57088c1b9d
flet-client-flutter: 0.22.1 -> 0.24.1 (#339837) 2024-09-06 14:42:15 +01:00
lucasew
85530418f8 flet-client-flutter: 0.22.1 -> 0.24.1
Signed-off-by: lucasew <lucas59356@gmail.com>
2024-09-05 13:15:04 -03:00
a-kenji
c14563a5be flake-edit: init at 0.1.0 2024-09-04 17:46:54 +02:00
R. Ryantm
55c63e297c flameshot: 12.1.0-unstable-2024-08-02 -> 12.1.0-unstable-2024-09-01 2024-09-04 09:42:20 +00:00
Franz Pletz
25bde98257
fluent-bit: 3.1.6 -> 3.1.7 (#339138) 2024-09-04 09:23:59 +02:00
R. Ryantm
d98bc8b252 fluent-bit: 3.1.6 -> 3.1.7 2024-09-03 01:07:24 +00:00
Donovan Glover
b387a48a04
flye: 2.9.4 -> 2.9.5 (#338986) 2024-09-03 00:03:52 +00:00
Artturin
81bcc8ac4b
flameshot: fix build on Darwin (#336647) 2024-09-03 02:54:29 +03:00
Assistant
0e70b90d02 flye: 2.9.4 -> 2.9.5 2024-09-02 06:59:36 -04:00
R. Ryantm
4276cd7475 flashmq: 1.17.0 -> 1.17.1 2024-09-01 01:00:15 +00:00
Sebastián Mancilla
0174d4a34c flameshot: fix build on Darwin 2024-08-30 22:32:29 -04:00
Sebastián Mancilla
f97875026a flameshot: update cmake options
- Only enable Wayland options on Linux
- Disable update checker
- Add support to build with the monochrome icon
2024-08-30 22:31:26 -04:00
Sebastián Mancilla
b95d89928d flameshot: format with nixfmt-rfc-style 2024-08-30 22:26:09 -04:00
R. Ryantm
025feb1a9b flarectl: 0.102.0 -> 0.103.0 2024-08-28 13:25:35 +00:00
Sandro
3b925a4fea
flatpak: fix icon validation test (#337458) 2024-08-27 14:09:53 +02:00
Emily
1faba3c1e9
maintainers: remove superherointj (#337552) 2024-08-27 01:08:06 +01:00
Atemu
d50f95b7c0
flashprog: 1.1 -> 1.2 (#336203) 2024-08-27 01:07:19 +02:00
superherointj
7354bda208 maintainers: remove superherointj 2024-08-26 17:50:54 -03:00
Sandro Jäckel
86a8ce4817
flatpak: fix icon validation test
Probably flatpak doesn't recognise inkscape SVGs but I didn't look
deeper into that.
2024-08-26 13:54:28 +02:00
Sandro
db4be47741
flatpak: fix cross compilation (#337412) 2024-08-26 13:30:51 +02:00
Colin
09a29769d5
flatpak: fix cross compilation, add cross check to passthru.tests
The 1.14.8 -> 1.14.10 update broke cross compilation, because the upstream
build script now invokes runtime dependencies for feature detection.
<5a2503f1e8/configure.ac (L178)>

It seems the package will be more robust against changes if we simply
emulate these checks rather than attempt to patch them out individually.
2024-08-26 11:15:41 +02:00
R. Ryantm
2dfcbd4f13 flashmq: 1.16.0 -> 1.17.0 2024-08-24 16:32:23 +00:00
Felix Singer
70c79190d9 flashprog: 1.1 -> 1.2
Signed-off-by: Felix Singer <felixsinger@posteo.net>
2024-08-21 02:10:19 +02:00
Franz Pletz
c1ecf19b2a
Merge pull request #335736 from r-ryantm/auto-update/fluent-bit 2024-08-19 09:01:49 +02:00
R. Ryantm
e591b806c7 fluent-bit: 3.1.5 -> 3.1.6 2024-08-19 05:34:04 +00:00
Peder Bergebakken Sundt
7020a1d893 treewide: default.nix -> package.nix in pkgs/by-name
We need to remember to go over all the update scripts once the mass-by-name migration has happened
2024-08-18 18:09:17 +02:00
Sandro
6fdb0c9e45
Merge pull request #334324 from uninsane/pr-flatpak-cross
flatpak: support cross compilation
2024-08-18 15:44:04 +02:00
Nick Cao
266652d684
Merge pull request #335180 from pbsds/bump-flexget-1723832082
flexget: 3.11.42 -> 3.11.43
2024-08-17 14:45:33 -04:00
Nick Cao
6a1cc92674
Merge pull request #335415 from newAM/flip-link-by-name
flip-link: move to pkgs/by-name
2024-08-17 14:37:25 -04:00
Alex Martens
c5c4ebbe93 flip-link: move to pkgs/by-name 2024-08-17 09:23:39 -07:00
Mathias Zhang
b83043cf57
flaca: migrate to pkgs/by-name 2024-08-17 17:05:27 +08:00