Commit Graph

21 Commits

Author SHA1 Message Date
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
R. Ryantm
b6c8e333a5 oauth2l: 1.3.0 -> 1.3.1 2024-12-04 01:08:31 +00:00
R. Ryantm
1ffc3bc18c oauth2c: 1.16.0 -> 1.17.0 2024-11-21 15:33:46 +00:00
K900
9c85c8a22a Merge remote-tracking branch 'origin/master' into staging-next 2024-11-12 21:14:32 +03:00
R. Ryantm
461ee9ef59 oauth2-proxy: 7.6.0 -> 7.7.1 2024-11-10 02:26:22 +01:00
Emily
ce788776a5 Merge master into staging-next 2024-11-09 12:51:01 +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
Martin Weinelt
46b1474255 Reapply "haskellPackages: update stackage and hackage" (#354547)
This reverts commit 7701a9e6c6, reversing
changes made to 8991dc8e9d.

Restore haskell-updates on staging-next to save resources on hydra.
2024-11-08 18:42:24 +01:00
Vladimír Čunát
fe6d94b8f9
Revert "haskellPackages: update stackage and hackage" 2024-11-08 18:36:29 +01:00
sternenseemann
92ce112366 haskellPackages.twain: build with up to date dependencies
twain 2.2.0.0 means that we can finally stop depending on out of date
versions of http2 and warp.
2024-11-03 12:48:51 +01:00
Yarny0
18e9a97ff8 oath-toolkit: 2.6.11 -> 2.6.12
Note that this fixes CVE-2024-47191 (privilege escalation), see
https://security.opensuse.org/2024/10/04/oath-toolkit-vulnerability.html
2024-10-05 07:33:02 +02:00
Yarny0
001181d49e oath-toolkit: migrate to pkgs/by-name overlay 2024-10-05 07:19:54 +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
sternenseemann
6cc8c10fe0 oama: ignore erroneous references on aarch64-darwin
The use of the Paths_ module causes erroneous references on
aarch64-darwin (due to a lack of dead code elimination), so we can't use
justStaticExecutables.

See #318013.
2024-08-30 12:14:49 +02:00
Aidan Gauland
62fa341dba
oama: init at 0.14 2024-08-24 11:09:55 +12:00
Carl Calaquian
56295005ef oathkeeper: init at 0.40.7 2024-07-10 00:56:56 +08: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
Fabian Affolter
939db8e337 oam-tools: init at 0.1.2
Analysis and management tools for an Open Asset Model database

https://github.com/owasp-amass/oam-tools
2024-01-28 18:15:25 +01:00
Nick Cao
de92641bf5
Merge pull request #199993 from wentasah/oauth2ms
oauth2ms: init at 2021-07-09
2023-12-11 09:31:07 -05:00
happysalada
66d8916ae8 oauth2l: init at 1.3.0 2023-11-09 21:07:09 +01:00
Michal Sojka
76b707c422 oauth2ms: init at 2021-07-09 2023-10-22 17:51:51 +02:00