Commit Graph

84 Commits

Author SHA1 Message Date
R. Ryantm
83232efb41 keycloak: 26.0.5 -> 26.0.6 2024-11-22 14:22:54 +00:00
Masum Reza
9777a72dd3
Take over the role of maintainer luc65r (#356536) 2024-11-21 15:03:06 +05:30
seth
1422e691d2
keypunch: add updateScript 2024-11-19 08:34:58 -05:00
seth
fa47863e66
keypunch: add getchoo to maintainers 2024-11-19 05:52:32 -05:00
seth
3b9f89bf49
keypunch: 3.1 -> 4.0
Diff: https://github.com/bragefuglseth/keypunch/compare/refs/tags/v3.1...v4.0
2024-11-19 05:50:58 -05:00
Sam Connelly
7c66fb1ec5 migrate maintainership from luc65r to clevor
They said they haven't used Nix in a while and is not interested in
maintaining cemu-ti (presumably other packages too), so I asked to take
over his role. I removed luc65r from the meta.maintainers attribtes, and
adopted the packages I wanted to adopt. I chose to adopt the TI graphing
calculator-related packages as I am part of Cemetech.
2024-11-17 14:30:20 -05:00
pthompson3
050d8a38b8 keepmenu: 1.4.0 -> 1.4.2 2024-11-17 13:16:40 +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
Weijia Wang
8c3507a20a
keycastr: 0.9.18 -> 0.10.1 (#352919) 2024-11-03 03:42:28 +01:00
расходный материал
a5337b56fe
keyguard: 1.6.3 -> 1.6.4 (#353089) 2024-11-02 21:30:34 +01:00
Matteo Pacini
1356c59f6d keycastr: 0.9.18 -> 0.10.1 2024-11-01 16:46:46 +00:00
Weijia Wang
b131f334ce
keepass: 2.57 -> 2.57.1 (#348635) 2024-11-01 13:22:59 +01:00
Aleksana
6e35f2d8b9
keyspersecond: init at 8.9 (#281495) 2024-10-28 23:24:41 +08:00
Francesco Gazzetta
68576df997 treewide: move tcl libraries under tclPackages 2024-10-26 16:23:15 +00:00
Paul Meyer
f99261f060 keep-sorted: 0.5.0 -> 0.5.1
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-10-26 13:57:51 +02:00
aucub
27a3bf0325 keyguard: 1.6.2 -> 1.6.3 2024-10-19 17:42:57 +00:00
Shawn8901
9212e49241 keymapp: 1.3.2 -> 1.3.3 2024-10-16 22:00:26 +02:00
R. Ryantm
a505de3e08 keepass: 2.57 -> 2.57.1 2024-10-14 21:54:34 +00:00
Peder Bergebakken Sundt
4477eb2fce
keyguard: 1.6.1 -> 1.6.2 (#347050) 2024-10-14 01:36:57 +02:00
Paul Meyer
8e71e9d400
keep-sorted: 0.4.0 -> 0.5.0 (#345426) 2024-10-07 13:14:48 +02:00
dr56ekgbb
50631a06cf keyguard: 1.6.1 -> 1.6.2 2024-10-07 17:18:42 +08:00
расходный материал
6abc2cbbc4
keyguard: 1.6.0 -> 1.6.1 (#346823)
Co-authored-by: dr56ekgbb <dr56ekgbb@mozmail.com>
2024-10-06 18:48:43 +02:00
расходный материал
a054cac31d
keyguard: init at 1.6.0 (#345032)
* keyguard: init at 1.6.0

* Update pkgs/by-name/ke/keyguard/package.nix

---------

Co-authored-by: dr56ekgbb <dr56ekgbb@mozmail.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2024-10-05 20:23:45 +02:00
Paul Meyer
e6a7bb6a86 keep-sorted: 0.4.0 -> 0.5.0
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-10-02 16:17:38 +02: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
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
aleksana
4d183800f5 keypunch: 1.0 -> 3.1 2024-09-09 20:39:58 +08: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
Sandro
954e821047
keycastr: added update script (#337745) 2024-09-01 17:49:20 +02:00
éclairevoyant
70aea8ceb3
keeweb: remove dead code 2024-08-30 16:43:59 -04:00
éclairevoyant
e600974d6c
keeweb: remove meta = with lib; 2024-08-30 16:41:01 -04:00
éclairevoyant
6dc3fd448f
keeweb: make overriding easier 2024-08-30 16:40:08 -04:00
éclairevoyant
b4b5c236dc
keeweb: fix runtime crash 2024-08-30 16:39:19 -04:00
éclairevoyant
9c81cde9e5
keeweb: fix gtk wrapping 2024-08-30 16:38:17 -04:00
éclairevoyant
be56643cbb
keeweb: nixfmt 2024-08-30 16:36:29 -04:00
éclairevoyant
f9839bc927
keeweb: migrate to by-name 2024-08-30 16:34:55 -04:00
Matteo Pacini
1e14ee7532 keycastr: added update script 2024-08-27 17:41:10 +01: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
Florian
6ace6a00c5
Merge pull request #332921 from ofalvai/keepassxc-go-unbreak-darwin
keepassxc-go: unbreak on darwin
2024-08-13 11:04:30 +02:00
Olivér Falvai
faf1e1700a
keepassxc-go: unbreak on darwin 2024-08-07 08:48:43 +02:00
Peder Bergebakken Sundt
7afb7c355e
Merge pull request #331163 from Shawn8901/update_keymapp
keymapp: 1.3.1 -> 1.3.2
2024-08-07 00:50:06 +02:00
TomaSajt
05fb63fea3
keyspersecond: init at 8.9 2024-08-02 20:56:40 +02:00
zimbatm
caa12efaf4 keycard-cli: move to by-name 2024-07-31 09:10:31 +02:00
Shawn8901
7034d28afb keymapp: 1.3.1 -> 1.3.2 2024-07-30 23:21:23 +02:00
Shawn8901
e5d65aefac keymapp: 1.3.0 -> 1.3.1 2024-07-14 19:37:23 +02:00
Aleksana
6794d064ed
Merge pull request #321743 from getchoo/pkgs/key-rack/init
key-rack: init at 0.4.0
2024-07-12 10:08:50 +08:00
seth
94b35a21e3
key-rack: init at 0.4.0 2024-07-11 12:53:19 -04:00
Sandro
468e214dbb
Merge pull request #325487 from SFrijters/keepassxc-go-completions 2024-07-10 13:48:30 +02:00
Shawn8901
e70ed1056a keymapp: 1.2.1 -> 1.3.0 2024-07-09 20:07:44 +02:00
Stefan Frijters
91ac44bb0d
keepassxc-go: only generate shell completions if possible 2024-07-08 11:37:43 +02:00