{ lib, buildGoModule, fetchFromGitHub, installShellFiles, }: buildGoModule rec { pname = "simplotask"; version = "1.16.1"; src = fetchFromGitHub { owner = "umputun"; repo = "spot"; rev = "v${version}"; hash = "sha256-SfHemtGomn1zxK4oQMYXfzAftmMd5yroY+mFaxtq6HE="; }; vendorHash = null; nativeBuildInputs = [ installShellFiles ]; ldflags = [ "-s -w" "-X main.revision=v${version}" ]; doCheck = false; postInstall = '' mv $out/bin/{secrets,spot-secrets} installManPage *.1 ''; meta = with lib; { description = "Tool for effortless deployment and configuration management"; homepage = "https://spot.umputun.dev/"; maintainers = with maintainers; [ sikmir ]; license = licenses.mit; mainProgram = "spot"; }; }