haredo: format with nixfmt-rfc-style

This commit is contained in:
Coutinho de Souza 2024-05-16 12:56:09 -03:00
parent 4ac10d906f
commit d3195bd6d5
No known key found for this signature in database
GPG Key ID: 59081FCB8F9AABB5

View File

@ -1,17 +1,21 @@
{ stdenv
, lib
, fetchFromSourcehut
, hare
, scdoc
, nix-update-script
, makeWrapper
, bash
{
stdenv,
lib,
fetchFromSourcehut,
hare,
scdoc,
nix-update-script,
makeWrapper,
bash,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "haredo";
version = "1.0.5";
outputs = [ "out" "man" ];
outputs = [
"out"
"man"
];
src = fetchFromSourcehut {
owner = "~autumnull";
@ -64,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: {
postFixup = ''
wrapProgram $out/bin/haredo \
--prefix PATH : "${lib.makeBinPath [bash]}"
--prefix PATH : "${lib.makeBinPath [ bash ]}"
'';
setupHook = ./setup-hook.sh;