{ pkgs, src, baseName }: let nixfmt = import (builtins.fetchTarball "https://github.com/serokell/nixfmt/archive/master.tar.gz") { }; in rec { baseTask = pkgs.stdenv.mkDerivation { name = "${baseName}-task"; src = src; buildInputs = [ ]; phases = "unpackPhase buildPhase"; buildPhase = '' echo "ERROR: base task buildPhase not overriden." exit 1 ''; }; shellcheck = ignoredFindPattern: baseTask.overrideAttrs (baseAttrs: { name = "${baseAttrs.name}-shellcheck"; buildInputs = baseAttrs.buildInputs ++ [ pkgs.shellcheck ]; buildPhase = '' find . -type f \( -name '*.sh' -and -regextype egrep ! -regex '${ignoredFindPattern}' \) -print0 | xargs -0 shellcheck touch $out ''; }); formatNix = baseTask.overrideAttrs (baseAttrs: { name = "${baseAttrs.name}-nixfmt"; buildInputs = baseAttrs.buildInputs ++ [ nixfmt ]; buildPhase = '' format() { nix_file="$1" diff <(nixfmt < "$nix_file") "$nix_file" || { echo "The $nix_file is unformatted. To fix it, run:" echo " nixfmt $nix_file" exit 1 } } export -f format find . -type f -name '*.nix' -print0 | xargs -0 -I{} bash -c "format {}" \; touch $out ''; }); fixme = ignoredFiles: baseTask.overrideAttrs (baseAttrs: rec { name = "${baseAttrs.name}-fixme"; buildInputs = baseAttrs.buildInputs ++ [ pkgs.ag ]; ignoredPattern = pkgs.lib.fold (a: b: " --ignore ${a} ${b}") "" (if ignoredFiles == null then [ "default.nix" "TODOs.org" ] else ignoredFiles); buildPhase = '' ag FIXME ${ignoredPattern} || { touch $out exit 0 } echo " Found dangling FIXME markers on the project." exit 1 ''; }); test = testDerivations: baseTask.overrideAttrs (baseAttrs: { name = "${baseAttrs.name}-test"; buildPhase = '' echo "Ran tests for:" for d in ${builtins.toString testDerivations}; do echo " $d" done echo "All tests passed!" touch $out ''; }); }