Commit Graph

73 Commits

Author SHA1 Message Date
Thiago Kenji Okada
8b7f17ce3a
wl-clipboard-rs: 0.9.0 -> 0.9.1 (#359015) 2024-11-27 19:36:04 +00:00
Sandro
6490fd94d6
wlvncc: unstable-2023-01-05 -> unstable-2024-11-24 (#357566) 2024-11-27 16:23:45 +01:00
yellowhat
e01c3b9ff3
wl-clipboard-rs: add man pages and shell completions 2024-11-26 10:56:40 +00:00
yellowhat
2c4fbc0313
wl-clipboard-rs: 0.9.0 -> 0.9.1 2024-11-25 14:38:02 +00:00
teutat3s
9d34f3ceb5
wlvncc: unstable-2023-01-05 -> unstable-2024-11-24
Diff: 2b9a886edd...0489e29fba
2024-11-24 14:25:27 +01:00
Colin
c10f2c7583
wl-crosshair: init at 0.1.0-unstable-2024-05-09 (#315950) 2024-11-22 05:29:38 +00:00
Aleksana
551ae86803
wlink: fix overuse of with lib (#357240) 2024-11-21 16:10:23 +08:00
Jordan Williams
3e9804ac0e
wlink: fix overuse of with lib 2024-11-19 06:11:02 -06:00
Komo
29d327062d wluma: 4.4.0 -> 4.5.1
Closes #356923
2024-11-18 22:49:01 +08:00
R. Ryantm
c8fa2bffec wl-restart: 0.2.0 -> 0.3.0 2024-11-14 05:10:28 +00:00
R. Ryantm
db3e4ba22d wlink: 0.0.9 -> 0.1.0 2024-11-12 09:25:59 +00:00
Austin Horstman
c701c72b71
wl-gammarelay-rs: 0.4.1 -> 1.0.0 (#353023) 2024-11-09 06:49:03 -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
Zitrone
80335810c8
wl-gammarelay-rs: 0.4.1 -> 1.0.0 2024-11-09 03:05:31 +01:00
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
luftmensch-luftmensch
01856f87f6
wl-kbptr: 0.2.1 -> 0.2.3 2024-11-05 21:51:16 +01:00
Jordan Williams
d042b834b1
wlink: init at 0.0.9 2024-10-03 14:34:36 -05:00
R. Ryantm
6304db4662 wlx-overlay-s: 0.5.0 -> 0.6 2024-10-01 19:22:27 +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
bccfcfbf77 wlx-overlay-s: 0.4.4 -> 0.5.0 2024-09-23 22:36:30 +00:00
lgbishop
54bc6d21e5 wl-gammarelay-applet: init at 0.1.4
Fix code style of package.nix using nixfmt

Fix description punctuation

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

Fix longDescription line length

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

Remove unnecessary rec

Simplify buildInputs

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

Replace postFixup with runtimeDependencies

Removed postFixup
Added wayland, libxkbcommon, fontconfig.lib to runtimeDependencies
Added autoPatchelfHook to nativeBuildInputs (and input)
Added stdenv.cc.cc.lib to buildInputs (needed by autoPatchelfHook)
Removed fontconfig from buildInputs

Replace cargoLock with cargoHash

Delete Cargo.lock

wl-gammarelay-applet: init at 0.1.4
2024-09-23 01:47:38 +10: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
Robert Schütz
d5cbc4d878
wl-restart: init at 0.2.0 (#337887) 2024-08-31 07:14:26 -07:00
Vladimír Čunát
20766c84e8
wlvncc: fix build, missing wayland-scanner 2024-08-31 11:47:10 +02:00
Vladimír Čunát
c3b3652708
wlinhibit: fix build, missing wayland-scanner 2024-08-31 11:45:43 +02:00
Vladimír Čunát
9d522cf362
wl-kbptr: fix build, missing wayland-scanner 2024-08-31 11:44:53 +02:00
Bot_wxt1221
9a2f97a16b
wl-restart: init at 0.2.0 2024-08-29 19:46:13 +08:00
Justinas Stankevicius
33d8eabcbe wlx-overlay-s: add required libraries 2024-08-21 17:54:52 +03:00
Sefa Eyeoglu
41908b4abb
wlx-overlay-s: format using nixfmt
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-08-12 23:04:07 +02:00
Sefa Eyeoglu
026afcd731
wlx-overlay-s: 0.4.3 -> 0.4.4
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-08-11 16:25:54 +02:00
Sefa Eyeoglu
2573e58e1e
wlx-overlay-s: 0.4.2 -> 0.4.3
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-08-04 21:40:22 +02:00
Martin Weinelt
93f4195fe0
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/applications/graphics/seamly2d/default.nix
2024-07-26 18:05:04 +02:00
Sigmanificient
61fe0c0416 pkgs/by-name: remove unused arguments 2024-07-26 10:11:07 +02:00
aleksana
a9709c299b treewide: change cargoSha256 with SRI hash to cargoHash 2024-07-03 21:53:11 +08:00
Aleksana
0fd7eea2c9
Merge pull request #317029 from 0x5a4/maintain-wlinhibit
Add myself as wlinhibit maintainer
2024-06-29 00:31:58 +08:00
Artturin
31f928d4f2
Merge pull request #322261 from bnlrnz/wlr-layout-ui
wlr-layout-ui: 1.6.11 -> 1.6.14
2024-06-28 16:13:09 +03:00
Ben Lorenz
6a1ada4d04 wlr-layout-ui: 1.6.11 -> 1.6.14 2024-06-24 22:27:31 +02:00
R. Ryantm
afa35b5e7a wlx-overlay-s: 0.4.1 -> 0.4.2 2024-06-23 00:22:28 +00:00
R. Ryantm
0d51c25d62 wl-clipboard-rs: 0.8.1 -> 0.9.0 2024-06-20 04:11:15 +00:00
kirillrdy
5df2b48ba1
Merge pull request #318200 from Scrumplex/pkgs/wlx-overlay-s/0.4.0
wlx-overlay-s: 0.3.2 -> 0.4.1
2024-06-10 22:34:37 +00:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Sefa Eyeoglu
e44476e542
wlx-overlay-s: add version test and update script
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-06-09 10:40:56 +02:00
Sefa Eyeoglu
d126ed4683
wlx-overlay-s: 0.3.2 -> 0.4.1
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-06-09 10:40:56 +02:00
0x5a4
1ec428d176
wlinhibit: add 0x5a4 as maintainer 2024-06-04 10:35:21 +02:00
Aleksana
5bf588d8c1
Merge pull request #314795 from r-ryantm/auto-update/wlr-layout-ui
wlr-layout-ui: 1.6.10 -> 1.6.11
2024-05-31 23:16:33 +08:00
Guanran Wang
cf33426f95
wl-crosshair: init at 0.1.0-unstable-2024-05-09 2024-05-31 01:02:58 +08:00
Felix Nilles
8b9bc5beff
wlinhibit: init 2024-05-30 17:18:21 +02:00
Benno Bielmeier
637bdc3d2f
wldash: init at 0.3.0 (#313098) 2024-05-26 13:10:29 +00:00
R. Ryantm
cdcccd94ad wlr-layout-ui: 1.6.10 -> 1.6.11 2024-05-26 08:27:24 +00:00
luftmensch-luftmensch
65379b1c1f
wl-kbptr: init at 0.2.1 2024-05-20 22:50:13 +02:00