75 lines
1.7 KiB
Nix
75 lines
1.7 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, nodejs
|
|
, python3
|
|
, runtimeShell
|
|
, stdenv
|
|
, testers
|
|
, runme
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "runme";
|
|
version = "2.0.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stateful";
|
|
repo = "runme";
|
|
rev = "v${version}";
|
|
hash = "sha256-ip2td0PEMga7Egd/YEGdpoUV4tnNI27BUDPYynpFhhc=";
|
|
};
|
|
|
|
vendorHash = "sha256-PLDsea/o067ifiX0RKFC7gDpORLVEQ0DV6sdBzzQCTs=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
nodejs
|
|
python3
|
|
];
|
|
|
|
subPackages = [
|
|
"."
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/stateful/runme/internal/version.BuildDate=1970-01-01T00:00:00Z"
|
|
"-X=github.com/stateful/runme/internal/version.BuildVersion=${version}"
|
|
"-X=github.com/stateful/runme/internal/version.Commit=${src.rev}"
|
|
];
|
|
|
|
# tests fail to access /etc/bashrc on darwin
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
postPatch = ''
|
|
substituteInPlace testdata/{categories/basic,runall/basic,script/basic}.txtar \
|
|
--replace /bin/bash "${runtimeShell}"
|
|
'';
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd runme \
|
|
--bash <($out/bin/runme completion bash) \
|
|
--fish <($out/bin/runme completion fish) \
|
|
--zsh <($out/bin/runme completion zsh)
|
|
'';
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion {
|
|
package = runme;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Execute commands inside your runbooks, docs, and READMEs";
|
|
homepage = "https://runme.dev";
|
|
changelog = "https://github.com/stateful/runme/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|