push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
lib,
shfmt,
stdenvNoCC,
}:
# See https://nixos.org/manual/nixpkgs/unstable/#tester-shfmt
# or doc/build-helpers/testers.chapter.md
{
name,
src,
indent ? 2,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
__structuredAttrs = true;
strictDeps = true;
inherit src indent;
name = "shfmt-${name}";
dontUnpack = true; # Unpack phase tries to extract archive
nativeBuildInputs = [ shfmt ];
doCheck = true;
dontConfigure = true;
dontBuild = true;
checkPhase = ''
shfmt --diff --indent $indent --simplify "$src"
'';
installPhase = ''
touch "$out"
'';
})

View File

@@ -0,0 +1,3 @@
hello() {
echo "hello"
}

View File

@@ -0,0 +1,43 @@
{ lib, testers }:
lib.recurseIntoAttrs {
# Positive tests
indent2 = testers.shfmt {
name = "indent2";
indent = 2;
src = ./src/indent2.sh;
};
indent2Bin = testers.shfmt {
name = "indent2Bin";
indent = 2;
src = ./src;
};
# Negative tests
indent2With0 = testers.testBuildFailure' {
drv = testers.shfmt {
name = "indent2";
indent = 0;
src = ./src/indent2.sh;
};
};
indent2BinWith0 = testers.testBuildFailure' {
drv = testers.shfmt {
name = "indent2Bin";
indent = 0;
src = ./src;
};
};
indent2With4 = testers.testBuildFailure' {
drv = testers.shfmt {
name = "indent2";
indent = 4;
src = ./src/indent2.sh;
};
};
indent2BinWith4 = testers.testBuildFailure' {
drv = testers.shfmt {
name = "indent2Bin";
indent = 4;
src = ./src;
};
};
}