Peder Bergebakken Sundt 5aba99242e treewide: fix typos in comments
Made with

```shell
git restore .
fd '\.nix$' pkgs/ --type f -j1 -x bash -xc "$(cat <<"EOF"
    typos --no-check-filenames --write-changes "$1"
    git diff --exit-code "$1" && exit
    #( git diff "$1" | grep -qE "^\+ +[^# ]") && git restore "$1"
    count1="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> ' | wc -l )"
    count2="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> (<span style="color:#f8f8f2;"> *</span>)?<span style="color:#75715e;">.*</span>$' | wc -l )"
    [[ $count1 -ne $count2 ]] && git restore "$1"
EOF
)" -- {}
```

and filtered with `GIT_DIFF_OPTS='--unified=15' git -c interactive.singleKey=true add --patch`

I initially tried using the tree-sitter cli, python bindings and even ast-grep through various means, but this is what I ended up with.
2025-02-24 10:44:41 +01:00

211 lines
4.0 KiB
Nix

{ lib, pkgs }:
let
inherit (lib) optionalString;
inherit (pkgs)
autoconf
automake
checkinstall
clang-analyzer
cov-build
enableGCOVInstrumentation
lcov
libtool
makeGCOVReport
runCommand
stdenv
vmTools
xz
;
in
rec {
sourceTarball =
args:
import ./source-tarball.nix (
{
inherit
lib
stdenv
autoconf
automake
libtool
;
}
// args
);
makeSourceTarball = sourceTarball; # compatibility
binaryTarball =
args:
import ./binary-tarball.nix (
{
inherit lib stdenv;
}
// args
);
mvnBuild =
args:
import ./maven-build.nix (
{
inherit lib stdenv;
}
// args
);
nixBuild =
args:
import ./nix-build.nix (
{
inherit lib stdenv;
}
// args
);
coverageAnalysis =
args:
nixBuild (
{
inherit lcov enableGCOVInstrumentation makeGCOVReport;
doCoverageAnalysis = true;
}
// args
);
clangAnalysis =
args:
nixBuild (
{
inherit clang-analyzer;
doClangAnalysis = true;
}
// args
);
coverityAnalysis =
args:
nixBuild (
{
inherit cov-build xz;
doCoverityAnalysis = true;
}
// args
);
rpmBuild =
args:
import ./rpm-build.nix (
{
inherit lib vmTools;
}
// args
);
debBuild =
args:
import ./debian-build.nix (
{
inherit
lib
stdenv
vmTools
checkinstall
;
}
// args
);
aggregate =
{
name,
constituents,
meta ? { },
}:
pkgs.runCommand name
{
inherit constituents meta;
preferLocalBuild = true;
_hydraAggregate = true;
}
''
mkdir -p $out/nix-support
touch $out/nix-support/hydra-build-products
echo $constituents > $out/nix-support/hydra-aggregate-constituents
# Propagate build failures.
for i in $constituents; do
if [ -e $i/nix-support/failed ]; then
touch $out/nix-support/failed
fi
done
'';
/*
Create a channel job which success depends on the success of all of
its contituents. Channel jobs are a special type of jobs that are
listed in the channel tab of Hydra and that can be subscribed.
A tarball of the src attribute is distributed via the channel.
- constituents: a list of derivations on which the channel success depends.
- name: the channel name that will be used in the hydra interface.
- src: should point to the root folder of the nix-expressions used by the
channel, typically a folder containing a `default.nix`.
channel {
constituents = [ foo bar baz ];
name = "my-channel";
src = ./.;
};
*/
channel =
{
name,
src,
constituents ? [ ],
meta ? { },
isNixOS ? true,
...
}@args:
stdenv.mkDerivation (
{
preferLocalBuild = true;
_hydraAggregate = true;
dontConfigure = true;
dontBuild = true;
patchPhase = optionalString isNixOS ''
touch .update-on-nixos-rebuild
'';
installPhase = ''
mkdir -p $out/{tarballs,nix-support}
tar cJf "$out/tarballs/nixexprs.tar.xz" \
--owner=0 --group=0 --mtime="1970-01-01 00:00:00 UTC" \
--transform='s!^\.!${name}!' .
echo "channel - $out/tarballs/nixexprs.tar.xz" > "$out/nix-support/hydra-build-products"
echo $constituents > "$out/nix-support/hydra-aggregate-constituents"
# Propagate build failures.
for i in $constituents; do
if [ -e "$i/nix-support/failed" ]; then
touch "$out/nix-support/failed"
fi
done
'';
meta = meta // {
isHydraChannel = true;
};
}
// removeAttrs args [ "meta" ]
);
}