mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
ea74836d9a
The program relies on the presence of a shell, specifically `sh`, on its
PATH[1].
Also set `enableParallelChecking` to true, which can speed up the build
proccess significantly, specially when using emulated native compilation
through `binfmt`.
[1]: 34136cfca3/item/src/haredo.ha (L282)
83 lines
1.5 KiB
Nix
83 lines
1.5 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromSourcehut
|
|
, hare
|
|
, scdoc
|
|
, nix-update-script
|
|
, makeWrapper
|
|
, bash
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "haredo";
|
|
version = "1.0.5";
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~autumnull";
|
|
repo = "haredo";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-gpui5FVRw3NKyx0AB/4kqdolrl5vkDudPOgjHc/IE4U=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hare
|
|
makeWrapper
|
|
scdoc
|
|
];
|
|
|
|
enableParallelChecking = true;
|
|
|
|
doCheck = true;
|
|
|
|
dontConfigure = true;
|
|
|
|
preBuild = ''
|
|
HARECACHE="$(mktemp -d --tmpdir harecache.XXXXXXXX)"
|
|
export HARECACHE
|
|
export PREFIX=${builtins.placeholder "out"}
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
./bootstrap.sh
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
./bin/haredo ''${enableParallelChecking:+-j$NIX_BUILD_CORES} test
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
./bootstrap.sh install
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/haredo \
|
|
--prefix PATH : "${lib.makeBinPath [bash]}"
|
|
'';
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "A simple and unix-idiomatic build automator";
|
|
homepage = "https://sr.ht/~autumnull/haredo/";
|
|
license = lib.licenses.wtfpl;
|
|
maintainers = with lib.maintainers; [ onemoresuza ];
|
|
mainProgram = "haredo";
|
|
inherit (hare.meta) platforms badPlatforms;
|
|
};
|
|
})
|