nixpkgs/pkgs/servers/soft-serve/default.nix
dadada 63ecebe2a3
soft-serve: fix shell hook
This adds bash to the PATH of soft-serve. This is
required for the hooks to work, since they
are implemented in bash.
2023-10-21 00:36:56 +02:00

38 lines
1.0 KiB
Nix

{ lib, buildGoModule, fetchFromGitHub, makeWrapper, git, bash }:
buildGoModule rec {
pname = "soft-serve";
version = "0.6.2";
src = fetchFromGitHub {
owner = "charmbracelet";
repo = "soft-serve";
rev = "v${version}";
hash = "sha256-gmgIuQk+8MRkuFZaJq82hHNdUMSqrylwgk6vi/Q0OQ0=";
};
vendorHash = "sha256-7lzdngj6xBpEe2nZdPW1GLbarPBdCHMnf+Dyxuq2Ikw=";
doCheck = false;
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
# Soft-serve generates git-hooks at run-time.
# The scripts require git and bash inside the path.
wrapProgram $out/bin/soft \
--prefix PATH : "${lib.makeBinPath [ git bash ]}"
'';
meta = with lib; {
description = "A tasty, self-hosted Git server for the command line";
homepage = "https://github.com/charmbracelet/soft-serve";
changelog = "https://github.com/charmbracelet/soft-serve/releases/tag/v${version}";
mainProgram = "soft";
license = licenses.mit;
maintainers = with maintainers; [ penguwin ];
};
}