about summary refs log tree commit diff
path: root/pkgs/by-name/gr
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-01-17 20:12:14 +0100
committerGitHub <noreply@github.com>2024-01-17 20:12:14 +0100
commit9504a31fcd22ec75016efed8e8abe73fc0a4f065 (patch)
tree83cd11c79d5ba1a6b75f37ed23d706ae808dc7a9 /pkgs/by-name/gr
parent38896dff59d59ee4e2c527b13afce4cff72c0a7f (diff)
parent27add5ac6fff2092379fffac350bac854d5114bc (diff)
downloadnixlib-9504a31fcd22ec75016efed8e8abe73fc0a4f065.tar
nixlib-9504a31fcd22ec75016efed8e8abe73fc0a4f065.tar.gz
nixlib-9504a31fcd22ec75016efed8e8abe73fc0a4f065.tar.bz2
nixlib-9504a31fcd22ec75016efed8e8abe73fc0a4f065.tar.lz
nixlib-9504a31fcd22ec75016efed8e8abe73fc0a4f065.tar.xz
nixlib-9504a31fcd22ec75016efed8e8abe73fc0a4f065.tar.zst
nixlib-9504a31fcd22ec75016efed8e8abe73fc0a4f065.zip
Merge pull request #273494 from katexochen/grmon/init
grmon: init at 0.1
Diffstat (limited to 'pkgs/by-name/gr')
-rw-r--r--pkgs/by-name/gr/grmon/package.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/by-name/gr/grmon/package.nix b/pkgs/by-name/gr/grmon/package.nix
new file mode 100644
index 000000000000..d6200cc68582
--- /dev/null
+++ b/pkgs/by-name/gr/grmon/package.nix
@@ -0,0 +1,37 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+, nix-update-script
+}:
+
+buildGoModule rec {
+  pname = "grmon";
+  version = "0.1";
+
+  src = fetchFromGitHub {
+    owner = "bcicen";
+    repo = "grmon";
+    rev = "v${version}";
+    hash = "sha256-0J7f4DMADUut3Da0F1eTDsT1Hlk0rfInwzbcVcQNzg8=";
+  };
+
+  vendorHash = "sha256-ySgWEGHlEJpfB/BZuRs1bELBspEaiaX/UnJai2V/hx0=";
+
+  CGO_ENABLED = "0";
+
+  passthru = {
+    updateScript = nix-update-script { };
+  };
+
+  meta = with lib; {
+    description = "Command line monitoring for goroutines";
+    longDescription = ''
+      To use it, instrument your Go code following the
+      [usage description of the project](https://github.com/bcicen/grmon?tab=readme-ov-file#usage).
+    '';
+    homepage = "https://github.com/bcicen/grmon";
+    license = licenses.mit;
+    mainProgram = "grmon";
+    maintainers = with maintainers; [ katexochen ];
+  };
+}