Commit Graph

72 Commits

Author SHA1 Message Date
R. Ryantm
b1ca8bea94 skypeforlinux: 8.131.0.202 -> 8.132.0.201 2024-11-12 19:15:58 +00:00
Francesco Gazzetta
5e5ec22c6f
skia: unbreak darwin (#354557) 2024-11-09 22:04:55 +00:00
Austin Horstman
7bb5dfe0e4
sketchybar-app-font: 2.0.25 -> 2.0.27 2024-11-09 08:07:01 -06: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
Olivér Falvai
78705eaeb1
skia: unbreak darwin 2024-11-08 19:50:09 +01:00
Eveeifyeve
efab9a3e06
skeditor: add desktopitem, mainProgram (#352836)
Co-authored-by: Masum Reza <50095635+JohnRTitor@users.noreply.github.com>
2024-11-08 14:49:42 +05:30
Reno Dakota
52bf1163fa
treewide: use getLib when accessing clang / libclang / stdenv.cc.cc
In preparation to eliminate the lib output for the unwrapped clang, use
`lib.getLib` to access the `lib` output.
2024-11-07 10:27:41 +00:00
Emily
c5c0a3629e
sketchybar: switch to apple-sdk_15 (#352620) 2024-11-03 03:46:52 +00:00
Austin Horstman
52ba81f6c0
sketchybar: apple_sdk-11 -> apple_sdk-15
Upstream uses availability checks for different features. Lets not hold
back functionality by building with latest SDK available.
2024-11-01 19:52:11 -05:00
Austin Horstman
b08788ace8
skhd: add versionCheckHook 2024-10-31 20:52:05 -05:00
Austin Horstman
6d2334ef22
skhd: darwin sdk refactor
Requires 10.13 minimum
2024-10-31 20:51:39 -05:00
Austin Horstman
1278bdd300
sketchybar: add versionCheckHook
Check version on build and skip calling --help since it doesn't return
version.
2024-10-31 18:54:30 -05:00
Austin Horstman
a26836327d
sketchybar: switch to apple-sdk_11 2024-10-31 18:54:28 -05:00
R. Ryantm
2f0a5af130 sketchybar-app-font: 2.0.24 -> 2.0.25 2024-10-30 23:23:21 +00:00
Aleksana
57c53ec77b
skeditor: init at 2.8.1 (#351582) 2024-10-29 11:01:32 +08:00
eveeifyeve
c92e591bda skeditor: init at 2.8.1
skeditor: switch to skeditor csproj

skeditor: fix meta by renaming licences to licence

skeditor: fix formatting

skeditor: apply half of aleksanaa suggestions

skeditor: apply meta suggestion

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>

skeditor: fix eval error with license

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>

skeditor: fix description to meet conventions

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
2024-10-29 09:35:51 +11:00
Martin Joerg
3b7509c608 skypeforlinux: 8.130.0.205 -> 8.131.0.202 2024-10-26 12:50:17 +00:00
Peder Bergebakken Sundt
b6bb50bf75
skypeforlinux: 8.129.0.202 -> 8.130.0.205 (#349373) 2024-10-21 00:03:58 +02:00
Gutyina Gergő
9744efc3b0
treewide: update pnpmDeps hashes 2024-10-19 23:50:41 +02:00
Martin Joerg
88d93cef1a skypeforlinux: 8.129.0.202 -> 8.130.0.205 2024-10-17 21:15:46 +00:00
Thiago Kenji Okada
2977943aeb
treewide: move packages maintained by aaronjheng to by-name (#346765) 2024-10-07 07:38:59 +01:00
Aaron Jheng
b85511ca3c
treewide: move packages maintained by aaronjheng to by-name 2024-10-07 01:15:33 +00:00
R. Ryantm
cf400bf6b1 skypeforlinux: 8.129.0.201 -> 8.129.0.202 2024-10-05 07:27:50 +00:00
R. Ryantm
cc4f6b06f3 skypeforlinux: 8.127.0.200 -> 8.129.0.201 2024-09-27 05:50:52 +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
Francesco Gazzetta
af46c5cc90 skia: 124-unstable-2024-05-22 -> 129-unstable-2024-09-18 2024-09-21 18:07:05 +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
jopejoe1
8b4061fd60 skia: make use of gnFlags 2024-09-03 13:22:53 +00:00
R. Ryantm
6186bea91f skypeforlinux: 8.126.0.208 -> 8.127.0.200 2024-08-29 19:51:25 +00:00
Martin Joerg
59b24c853f skypeforlinux: adopt
The other maintainers seem to be inactive.
2024-08-22 09:56:07 +00:00
Martin Joerg
e252e2291d skypeforlinux: 8.119.0.201 -> 8.126.0.208 2024-08-21 14:09:01 +00:00
R. Ryantm
a0e3567cbd sketchybar-app-font: 2.0.23 -> 2.0.24 2024-08-16 03:03:56 +00:00
superherointj
9976e85d8e
Merge pull request #334339 from vytskalt/skia-cross
skia: fix cross build
2024-08-14 16:27:16 -03:00
Nick Cao
5a1160e510
Merge pull request #333373 from r-ryantm/auto-update/sketchybar-app-font
sketchybar-app-font: 2.0.20 -> 2.0.23
2024-08-13 16:10:17 -04:00
vytskalt
b1d3ab18e5
skia: fix cross build 2024-08-13 18:39:42 +03:00
Francesco Gazzetta
5f27dd5e5a skia: fix missing SkFontMgr_New_FontConfig 2024-08-13 14:06:58 +00:00
R. Ryantm
4ae5cf5414 sketchybar-app-font: 2.0.20 -> 2.0.23 2024-08-09 05:44:30 +00:00
Nick Cao
f28c080249
Merge pull request #330575 from r-ryantm/auto-update/skypilot
skypilot: 0.6.0 -> 0.6.1
2024-07-29 15:37:56 -04:00
Aleksana
a07da9722d
Merge pull request #330664 from Mic92/empty-with
treewide: remove unused `with` statements from maintainer lists
2024-07-29 15:01:57 +08:00
Jörg Thalheim
5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
R. Ryantm
91a7e98b25 sketchybar-app-font: 2.0.19 -> 2.0.20 2024-07-28 07:09:46 +00:00
R. Ryantm
e2143121ce skypilot: 0.6.0 -> 0.6.1 2024-07-28 04:05:26 +00:00
Jörg Thalheim
1b4d569d83
Merge pull request #330045 from YvesStraten/update/skimpdf
skimpdf: 1.7.2 -> 1.7.3
2024-07-26 20:27:07 +02:00
Sigmanificient
61fe0c0416 pkgs/by-name: remove unused arguments 2024-07-26 10:11:07 +02:00
YvesStraten
b3cb48b19b skimpdf: 1.7.2 -> 1.7.3 2024-07-26 09:04:54 +08:00
Anderson Torres
539575ab2b treewide: remove yana from meta.maintainers [orphans] 2024-07-22 16:22:39 -03:00
Sandro
397a5c25e7
Merge pull request #324602 from seanrmurphy/add-skypilot
skypilot: init at 0.6.0
2024-07-17 20:08:34 +02:00
Sean Murphy
b9bc4a9d29 skypilot: init at 0.6.0
Co-authored-by: aos <25783780+aos@users.noreply.github.com>
2024-07-16 14:15:11 +02:00
Marcus Ramberg
64a71b02d7
Merge pull request #326128 from andresilva/spotify-skype-snap-yaml 2024-07-13 18:01:58 +02:00