Commit Graph

124 Commits

Author SHA1 Message Date
Liam Murphy
fa5b1dad9f
surfer: add darwin support 2024-10-12 21:31:20 +11: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
R. Ryantm
6569728429 superfile: 1.1.4 -> 1.1.5 2024-10-04 01:58:47 +00:00
seth
4f58959149
surrealist: use cargo-tauri.hook 2024-09-30 20:13:15 -04:00
Peter Tri Ho
65dfda6a35 superhtml: init at 0.5.0 2024-09-29 14:21:01 +00:00
R. Ryantm
b53d059d5e supermariowar: 2023-unstable-2024-09-17 -> 2023-unstable-2024-09-21 2024-09-29 03:44:34 +00:00
R. Ryantm
bde04503be surrealdb: 2.0.1 -> 2.0.2 2024-09-25 18:53:41 +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
Aleksana
dbe30a84de
sums: init at 0.11 (#340781) 2024-09-22 16:47:02 +08:00
nixpkgs-merge-bot[bot]
a193d72c66
supermariowar: 2023-unstable-2024-07-16 -> 2023-unstable-2024-09-17 (#342871) 2024-09-19 22:59:23 +00:00
Peder Bergebakken Sundt
e5e4dac5e4
sus-compiler: init at 0.0.2 (#342102) 2024-09-19 17:29:18 +02:00
Bobby Rong
89cb23339d
sushi: use actual upstream url as homepage (#343026) 2024-09-19 21:31:28 +08:00
Dmitry Marakasov
9f3c106bf1
sushi: use actual upstream url as homepage 2024-09-19 16:24:49 +03:00
R. Ryantm
5c9338240f supermariowar: 2023-unstable-2024-07-16 -> 2023-unstable-2024-09-17 2024-09-18 19:59:59 +00:00
running-grass
617b668318
surrealdb: 1.5.5 -> 2.0.1 2024-09-18 10:27:41 +08:00
Peder Bergebakken Sundt
b21aa65653 sus-compiler: init at 0.0.2 2024-09-15 18:17:30 +02: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
Sirio Balmelli
142d8333bb
surrealdb: 1.5.4 -> 1.5.5
Remove patches added in b7ca9dc1 to fix 1.5.4 build on rust 1.80.1

Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
2024-09-12 21:32:40 +02:00
Pol Dellaiera
61235dc6d4
maintainers: remove eclairevoyant (#341075) 2024-09-11 22:24:23 +02:00
éclairevoyant
49f7e34d6e
maintainers: remove eclairevoyant 2024-09-10 15:02:41 -04:00
hakan-demirli
be9a316660 surfer: init at v0.2.0 2024-09-10 15:56:12 +08:00
aleksana
519741ae32 sums: init at 0.11 2024-09-09 21:23:41 +08:00
Pavel Sobolev
16e1ffe043
subtitleedit: 4.0.7 -> 4.0.8 2024-09-07 12:17:54 +03:00
éclairevoyant
e273bc80a5
treewide: remove existing usages of pname+version in fetchCargoTarball
This is done because the existing fetchCargoTarball does not support pname or version, resulting in a vendor tarball
with the name cargo-deps-vendor.tar.gz. Since adding pname+version support would change the name of the derivation,
and therefore its hash, we remove existing usages to avoid treewide breakage.
2024-09-07 01:10:33 -04:00
Aleksana
1836898061
surrealist: 2.0.6 -> 2.1.6 (#335619) 2024-09-06 10:00:18 +08:00
Yt
db6d31f035
surrealdb: fix build (#337916) 2024-08-30 10:29:11 +00:00
Peter Frank
40664f7655 surrealist: 2.0.6 -> 2.1.6 2024-08-29 13:35:01 +02:00
Peder Bergebakken Sundt
c477a48699
treewide: replace all pytest-cov patching outside of pythonPackages with pytest-cov-stub (#336777) 2024-08-28 22:17:38 -04:00
Gutyina Gergő
a6296a5e5e
surrealdb: fix build 2024-08-28 16:06:06 +02:00
Sandro Jäckel
ca355f14c8
treewide: replace all pytest-cov patching outside of pythonPackages with pytest-cov-stub 2024-08-27 20:47:13 +02:00
Yt
5de1564aed
Merge pull request #336144 from siriobalmelli/sb/fix/surrealdb
surrealdb: fix build
2024-08-22 21:44:12 +00:00
natsukium
0ba266c509
sudachidict: 20230927 -> 20240716
Diff:
https://github.com/WorksApplications/SudachiDict/compare/v20230927...v20240716

Changelog:
https://github.com/WorksApplications/SudachiDict/releases/tag/v20240716
2024-08-22 18:32:07 +09:00
nixpkgs-merge-bot[bot]
e91c820811
Merge pull request #336248 from r-ryantm/auto-update/supersonic
supersonic: 0.13.0 -> 0.13.1
2024-08-21 07:52:40 +00:00
Sirio Balmelli
b7ca9dc149
surrealdb: fix build
Patches build breakage on rust 1.80.1:

error[E0282]: type annotations needed for `Box<_>`

Upstream PR to the 1.x branch: https://github.com/surrealdb/surrealdb/pull/4565

Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
2024-08-21 09:19:49 +02:00
R. Ryantm
a2c19a6841 supersonic: 0.13.0 -> 0.13.1 2024-08-21 04:16:35 +00: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
Donovan Glover
e8144b0888
Merge pull request #333696 from paveloom/subtitleedit
subtitleedit: 4.0.6 -> 4.0.7
2024-08-14 17:28:52 +00:00
R. Ryantm
88396a022b
sunpaper: 2.0 -> 2.1
Co-authored-by: eclairevoyant <contactmeongithubinstead@proton.me>
2024-08-11 17:44:49 -04:00
Pavel Sobolev
aff9ad0773
subtitleedit: 4.0.6 -> 4.0.7 2024-08-10 17:25:59 +03:00
Pavel Sobolev
4ae4064ff7
subtitleedit: move to pkgs/by-name 2024-08-10 17:25:01 +03:00
Guilhem Saurel
1c48fcff9c superscs: init at 1.3.2 2024-08-08 00:26:49 +02:00
tomberek
0c7807ddda
Merge pull request #328867 from r-ryantm/auto-update/supermariowar
supermariowar: 2.0-unstable-2024-06-22 -> 2023-unstable-2024-07-16
2024-08-04 14:43:26 -04:00
redyf
4b0746388b superfile: add redyf as maintainer 2024-08-01 16:41:36 -03:00
redyf
2775b81e4e superfile: 1.1.3 -> 1.1.4 2024-08-01 16:40:54 -03:00
Jonas Chevalier
a071069eb2
Merge pull request #329997 from zimbatm/zimbatm-by-name
move packages I maintain to pkgs/by-name
2024-07-31 09:20:01 +02:00
zimbatm
7b8adc065a su-exec: move to by-name 2024-07-31 09:10:31 +02:00
R. Ryantm
d31361e61a supersonic-wayland: 0.12.0 -> 0.13.0 2024-07-29 06:53:08 +00:00
R. Ryantm
50a847ea04 supermariowar: 2.0-unstable-2024-06-22 -> 2023-unstable-2024-07-16 2024-07-21 09:03:41 +00:00
RatCornu
d45168b224
suwayomi-server: 1.0.0 -> 1.1.1 2024-07-13 16:09:10 +02:00
R. Ryantm
73b9e297fa surrealdb: 1.5.3 -> 1.5.4 2024-07-12 23:12:04 +02:00