Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ci/checks/all-modules-have-maintainers.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions ci/checks/apply.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
# TODO: make sure theres no other stuff passing on accident in here
let
Expand Down
1 change: 1 addition & 0 deletions ci/checks/formatting.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

pkgs.runCommand "formatting-check" { } ''
Expand Down
1 change: 1 addition & 0 deletions ci/checks/makeCustomizable.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
luaEnv = self.lib.makeCustomizable "withPackages" {
Expand Down
1 change: 1 addition & 0 deletions ci/checks/meta-maintainers.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions ci/checks/meta-platforms.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions ci/checks/outputName-tests.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions ci/checks/subwrappermodule.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
evaled = self.lib.evalModule [
Expand Down
1 change: 1 addition & 0 deletions ci/checks/toKdl.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
lib = pkgs.lib;
Expand Down
1 change: 1 addition & 0 deletions ci/checks/types-file.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
lib = pkgs.lib;
Expand Down
8 changes: 2 additions & 6 deletions modules/makeWrapper/check.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
{
callPackage,
lib,
self,
...
}:
}@args:
lib.pipe ./checks [
builtins.readDir
(lib.filterAttrs (name: type: type == "regular" && lib.hasSuffix ".nix" name))
(lib.mapAttrs' (
name: _:
lib.nameValuePair (lib.removeSuffix ".nix" name) (
callPackage (./checks + "/${name}") { inherit self; }
)
name: _: lib.nameValuePair (lib.removeSuffix ".nix" name) (callPackage (./checks + "/${name}") args)
))
]
1 change: 1 addition & 0 deletions modules/makeWrapper/checks/args-direct.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions modules/makeWrapper/checks/env-null.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions modules/makeWrapper/checks/flags-equals-separator.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions modules/makeWrapper/checks/flags-list.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions modules/makeWrapper/checks/flags-null-false.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions modules/makeWrapper/checks/flags-space-separator.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions modules/makeWrapper/checks/flags.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
8 changes: 2 additions & 6 deletions modules/symlinkScript/check.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
{
callPackage,
lib,
self,
...
}:
}@args:
lib.pipe ./checks [
builtins.readDir
(lib.filterAttrs (name: type: type == "regular" && lib.hasSuffix ".nix" name))
(lib.mapAttrs' (
name: _:
lib.nameValuePair (lib.removeSuffix ".nix" name) (
callPackage (./checks + "/${name}") { inherit self; }
)
name: _: lib.nameValuePair (lib.removeSuffix ".nix" name) (callPackage (./checks + "/${name}") args)
))
]
1 change: 1 addition & 0 deletions modules/symlinkScript/checks/filesToExclude-glob.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions modules/symlinkScript/checks/filesToExclude-more.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions modules/symlinkScript/checks/filesToExclude.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions modules/symlinkScript/checks/filesToPatch.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/a/aria2/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
aria2Wrapper = self.wrappers.aria2.wrap {
Expand Down
2 changes: 1 addition & 1 deletion wrapperModules/a/atool/check.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs, self }:
{ pkgs, self, ... }:
let
atoolWrapped = self.wrappers.atool.wrap {
inherit pkgs;
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/c/cava/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
cavaWrapper = self.wrappers.cava.wrap { inherit pkgs; };
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/c/claude-code/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
claudeCodeWrapped = self.wrappers.claude-code.wrap {
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/e/emacs/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
emacsWrapped =
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/g/git/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/h/helix/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/j/jujutsu/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/m/mako/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/m/mangowc/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
mangowcWrapped = self.wrappers.mangowc.wrap {
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/m/mpv/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/n/niri/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/n/notmuch/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/n/nushell/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/r/rofi/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/v/vim/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/w/waybar/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
waybarWrapped = self.wrappers.waybar.wrap {
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/w/wezterm/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
weztermWrapped = self.wrappers.wezterm.wrap (
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/x/xplr/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
xplr = self.wrappers.xplr.wrap (
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/y/yazi/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:
let
yaziWrapper = self.wrappers.yazi.wrap { inherit pkgs; };
Expand Down
2 changes: 1 addition & 1 deletion wrapperModules/y/yt-dlp/check.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs, self }:
{ pkgs, self, ... }:
let
ytWrapped = self.wrappers.yt-dlp.wrap {
inherit pkgs;
Expand Down
1 change: 1 addition & 0 deletions wrapperModules/z/zsh/check.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
pkgs,
self,
...
}:

let
Expand Down