Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
968 B
Nix
49 lines
968 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
testers,
|
|
risor,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "risor";
|
|
version = "1.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "risor-io";
|
|
repo = "risor";
|
|
rev = "v${version}";
|
|
hash = "sha256-Vw0fslKtBGdL6BjzNYzGRneQ+jtNDvAymlUxNa0lKZ8=";
|
|
};
|
|
|
|
proxyVendor = true;
|
|
vendorHash = "sha256-yVvryqPB35Jc3MXIJyRlFhAHU8H8PmSs60EO/JABHDs=";
|
|
|
|
subPackages = [
|
|
"cmd/risor"
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=main.version=${version}"
|
|
];
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion {
|
|
package = risor;
|
|
command = "risor version";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Fast and flexible scripting for Go developers and DevOps";
|
|
mainProgram = "risor";
|
|
homepage = "https://github.com/risor-io/risor";
|
|
changelog = "https://github.com/risor-io/risor/releases/tag/${src.rev}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|