Commit Graph

59 Commits

Author SHA1 Message Date
Fabian Affolter
d011002802
sshocker: 0.3.4 -> 0.3.5 (#364442) 2024-12-12 17:47:20 +01:00
Nick Cao
d33d146445
ssocr: 2.24.0 -> 2.24.1 (#364414) 2024-12-12 10:38:39 -05:00
Fabian Affolter
975b05b7c5 sshocker: add versionCheckHook 2024-12-12 05:00:43 +01:00
R. Ryantm
a197d74ed5 sshocker: 0.3.4 -> 0.3.5 2024-12-12 03:10:17 +00:00
R. Ryantm
28030ffc17 ssocr: 2.24.0 -> 2.24.1 2024-12-12 01:03:23 +00:00
R. Ryantm
b950ef801a ssh-to-age: 1.1.9 -> 1.1.10 2024-12-11 15:07:47 +00:00
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
Weijia Wang
ada08ab4ec
ssm-session-manager-plugin: 1.2.677.0 -> 1.2.694.0 (#360259) 2024-12-09 19:54:49 +01:00
R. Ryantm
1682e84eed sslh: 2.1.2 -> 2.1.3 2024-12-08 12:50:23 +00:00
Philip Taron
a1ed41a112
appimageTools: use version (#359930) 2024-12-01 08:12:40 -08:00
R. Ryantm
f06e84eadd ssm-session-manager-plugin: 1.2.677.0 -> 1.2.694.0 2024-11-29 23:30:43 +00:00
Felix Buehler
41711056e6 ssb-patchwork: fix appimageTools version 2024-11-28 22:16:01 +01:00
jopejoe1
e51a9df08a treewide: use dpkg setup hook 2024-11-26 21:57:29 +01: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
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
Aleksana
2f6fc5a169
sshified: init at 1.2.1 (#351532) 2024-10-27 20:53:13 +08:00
Joonas Rautiola
af9e3bb5ab
sshified: init at 1.2.1 2024-10-27 12:01:14 +02:00
Maciej Krüger
1b5a47312b
ssh-import-id: refactor and move to pkgs/by-name (#350322) 2024-10-26 22:26:50 +02:00
Fabian Affolter
b471cb4037 sh-import-id: modernize 2024-10-23 08:51:04 +02:00
Aleksana
5b641acbe5
sscep: init at 0.10.0 (#336812) 2024-10-20 23:41:01 +08:00
Steffen Vogel
35c3803944 sscep: init at 0.10.0 2024-10-20 15:37:56 +02:00
Adam Stephens
dbddd91602
ssh-tpm-agent: 0.6.0 -> 0.7.0
https://github.com/Foxboron/ssh-tpm-agent/releases/tag/v0.7.0
2024-10-18 23:31:58 -04:00
Adam Stephens
08ce5e6f7b
ssh-tpm-agent: add nix-update-script 2024-10-18 23:30:27 -04:00
R. Ryantm
59196d8ea4 ssm-session-manager-plugin: 1.2.650.0 -> 1.2.677.0 2024-10-15 10:35:00 +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
Weijia Wang
ab9ed1c455
sshesame: 0.0.38 -> 0.0.39 (#332647) 2024-09-12 22:39:14 +02:00
éclairevoyant
49f7e34d6e
maintainers: remove eclairevoyant 2024-09-10 15:02:41 -04:00
R. Ryantm
130cdb8130 sshesame: 0.0.38 -> 0.0.39 2024-09-09 23:02:51 +02:00
Philip Taron
c67a2a4ec6
ssh-openpgp-auth: update comment to refer to nixpkgs-vet 2024-09-03 11:37:24 -07:00
R. Ryantm
c2808920d0 ssh-tpm-agent: 0.3.1 -> 0.6.0 2024-08-13 13:56:32 +00:00
Atemu
a457f213a1
Merge pull request #329929 from flohessling/fix-sessionmanagerplugin-build
ssm-session-manager-plugin: fix executable name
2024-07-29 23:55:44 +02:00
Flo Hessling
5a86326716
ssm-session-manager-plugin: fix executable name 2024-07-29 14:17:25 +02:00
Sigmanificient
61fe0c0416 pkgs/by-name: remove unused arguments 2024-07-26 10:11:07 +02:00
R. Ryantm
a67781032b sshesame: 0.0.35 -> 0.0.38 2024-07-25 08:22:02 +00:00
Jörg Thalheim
880af94fe0
Merge pull request #318850 from msanft/ssm-session-manager-plugin/build-go-module
ssm-session-manager-plugin: migrate to buildGoModule
2024-07-21 12:51:41 +02:00
Paul Meyer
bbb49863d9 ssm-session-manager-plugin: migrate to buildGoModule
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-07-19 20:11:42 +02:00
Paul Meyer
e7015409d1 ssm-session-manager-plugin: move to by-name
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-07-19 19:51:52 +02:00
Kirill Radzikhovskyy
311d2cc925 ssh-tpm-agent: unpin buildGoModule 2024-07-10 10:53:51 +10:00
Weijia Wang
11d61d3d38 sshesame: fix build on darwin 2024-07-02 15:46:53 +02:00
R. Ryantm
fc3cb14594 sshesame: 0.0.27 -> 0.0.35 2024-07-02 15:44:55 +02: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
Florian Brandes
8991c1cfbb
sse2neon: init at 1.7.0
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-05-02 11:12:20 +02:00
Mynacol
807f018d0b ssh-tpm-agent: Fix homepage link
The previous link leads to a 404.
2024-04-19 22:04:13 +02:00
Stanisław Pitucha
101f07032d
Merge pull request #304495 from viraptor/ssimulacra2
ssimulacra2: init at 2.1
2024-04-19 09:20:21 +10:00
superherointj
25457334ab
Merge pull request #278905 from eclairevoyant/sshesame
sshesame: init at 0.0.27
2024-04-17 11:40:09 -03:00
Stanisław Pitucha
8767312047 ssimulacra2: init at 2.1 2024-04-16 18:54:52 +10:00
Stanisław Pitucha
c7669c5efa sssnake: fix darwin build 2024-04-15 10:50:08 +10:00
Stig
6b7672b306
Merge pull request #249404 from stigtsp/package/ssh-tpm-agent-init
ssh-tpm-agent: init at 0.3.1
2024-03-27 04:21:26 +01:00
Stig Palmquist
be8502a95c
ssh-tpm-agent: init at 0.3.1 2024-03-27 03:27:05 +01:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00