about summary refs log tree commit diff
path: root/pkgs/by-name/no
diff options
context:
space:
mode:
authorNadir Ishiguro <nadir-yttrium@users.noreply.github.com>2023-11-13 19:50:20 +0100
committerNadir Ishiguro <nadir-yttrium@users.noreply.github.com>2023-11-13 19:50:20 +0100
commit230acf2b663076739b6abf56f1b299f387d02890 (patch)
tree1e7d41a899ba594e79256528d23fde7d30ba67fd /pkgs/by-name/no
parent4c5b8768f475e618e54ccafc8864bbae549a1567 (diff)
nom: init at 2.0.2
Diffstat (limited to 'pkgs/by-name/no')
-rw-r--r--pkgs/by-name/no/nom/package.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/by-name/no/nom/package.nix b/pkgs/by-name/no/nom/package.nix
new file mode 100644
index 0000000000000..258e1b44c378f
--- /dev/null
+++ b/pkgs/by-name/no/nom/package.nix
@@ -0,0 +1,26 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+buildGoModule rec {
+  pname = "nom";
+  version = "2.0.2";
+
+  src = fetchFromGitHub {
+    owner = "guyfedwards";
+    repo = "nom";
+    rev = "v${version}";
+    hash = "sha256-6tk8NRuBbRMoaz3CmUUOC6thxIgjk/MWl50+YgQ6l5o=";
+  };
+
+  vendorHash = "sha256-fP6yxfIQoVaBC9hYcrCyo3YP3ntEVDbDTwKMO9TdyDI=";
+
+  meta = with lib; {
+    homepage = "https://github.com/guyfedwards/nom";
+    description = "RSS reader for the terminal";
+    platforms = platforms.linux ++ platforms.darwin;
+    license = licenses.gpl3Only;
+    maintainers = with maintainers; [ nadir-ishiguro ];
+    mainProgram = "nom";
+  };
+}