Skip to content

Commit

Permalink
Update package.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
darwincereska authored Dec 22, 2024
1 parent daebe02 commit 2767112
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/by-name/ah/ahoy/package.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
lib,
fetchFromGitHub,
buildGoModule
buildGoModule,
}:
buildGoModule rec {
pname = "ahoy";
Expand All @@ -14,7 +14,9 @@ buildGoModule rec {
};
vendorHash = null;
outputs = [ "out" ];
ldflags = ["-s -w -X main.version=${version} -X main.GitCommit= -X main.GitBranch= -X main.BuildTime="];
ldflags = [
"-s -w -X main.version=${version} -X main.GitCommit= -X main.GitBranch= -X main.BuildTime="
];
meta = {
description = "Create self-documenting cli programs from YAML files. Easily wrap bash, grunt, npm, docker, (anything) to standardize your processes and make the lives of the people working on your project better.";
homepage = "https://github.com/ahoy-cli/ahoy";
Expand Down

0 comments on commit 2767112

Please sign in to comment.