about summary refs log tree commit diff
path: root/pkgs/applications/misc/globe-cli
diff options
context:
space:
mode:
authordevhell <devhell@users.noreply.github.com>2022-02-21 22:50:30 +0000
committerGitHub <noreply@github.com>2022-02-21 23:50:30 +0100
commit4faad70d25b06084d9d86834108e2a4504e039c3 (patch)
tree35b5efa3c18efea2fc04e03582062b911579d47a /pkgs/applications/misc/globe-cli
parentc1ac8780009203473a119476b95dc25541e17878 (diff)
globe-cli: init at 0.2.0 (#161239)
Diffstat (limited to 'pkgs/applications/misc/globe-cli')
-rw-r--r--pkgs/applications/misc/globe-cli/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/misc/globe-cli/default.nix b/pkgs/applications/misc/globe-cli/default.nix
new file mode 100644
index 0000000000000..e7ec63f97844a
--- /dev/null
+++ b/pkgs/applications/misc/globe-cli/default.nix
@@ -0,0 +1,20 @@
+{ lib, stdenv, rustPlatform, fetchCrate }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "globe-cli";
+  version = "0.2.0";
+
+  src = fetchCrate {
+    inherit pname version;
+    sha256 = "sha256-Np1f/mSMIMZU3hE0Fur8bOHhOH3rZyroGiVAqfiIs7g=";
+  };
+
+  cargoHash = "sha256-qoCOYk7hyjMx07l48IkxE6zsG58NkF72E3OvoZHz5d0=";
+
+  meta = with lib; {
+    description = "Display an interactive ASCII globe in your terminal";
+    homepage = "https://github.com/adamsky/globe";
+    license = licenses.gpl3Only;
+    maintainers = with maintainers; [ devhell ];
+  };
+}