Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions pkgs/by-name/go/gow/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule {
pname = "gow";
version = "unstable-2023-10-26";

src = fetchFromGitHub {
owner = "mitranim";
repo = "gow";
rev = "af11a6e1e9ebccdcdace2a6df619355b85494d74";
hash = "sha256-NmjJd3GVImCtYo5CxGnQHHPERx5R0sD4bzBsbxNGc3o=";
};

vendorHash = "sha256-Xw9V7bYaSfu5kA2505wmef2Ns/Y0RHKbZHUkvCtVNSM=";

meta = with lib; {
description = "Missing watch mode for Go commands. Watch Go files and execute a command like 'go run' or 'go test'";
homepage = "https://github.com/mitranim/gow";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.unlicense;
maintainers = with maintainers; [ endocrimes ];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You have removed yourself from maintainers in #307323. Therefore this PR can't be merged as it fails to evaluate the meta attributes

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR should simply be closed due to that. It can be reopened whenever.

mainProgram = "gow";
};
}