mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
91 lines
1.7 KiB
Nix
91 lines
1.7 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromSourcehut,
|
|
hareHook,
|
|
scdoc,
|
|
nix-update-script,
|
|
makeWrapper,
|
|
bash,
|
|
substituteAll,
|
|
}:
|
|
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=";
|
|
};
|
|
|
|
patches = [
|
|
# Use nix store's bash instead of sh. `@bash@/bin/sh` is used, since haredo expects a posix shell.
|
|
(substituteAll {
|
|
src = ./001-use-nix-store-sh.patch;
|
|
inherit bash;
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
hareHook
|
|
makeWrapper
|
|
scdoc
|
|
];
|
|
|
|
enableParallelChecking = true;
|
|
|
|
env.PREFIX = builtins.placeholder "out";
|
|
|
|
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
|
|
|
dontConfigure = true;
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
hare build -o bin/haredo ./src
|
|
scdoc <doc/haredo.1.scd >doc/haredo.1
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
./bin/haredo ''${enableParallelChecking:+-j$NIX_BUILD_CORES} test
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/share/man/man1
|
|
cp ./bin/haredo $out/bin
|
|
cp ./doc/haredo.1 $out/share/man/man1
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Simple and unix-idiomatic build automator";
|
|
homepage = "https://sr.ht/~autumnull/haredo/";
|
|
license = lib.licenses.wtfpl;
|
|
maintainers = with lib.maintainers; [ onemoresuza ];
|
|
mainProgram = "haredo";
|
|
inherit (hareHook.meta) platforms badPlatforms;
|
|
};
|
|
})
|