globe-cli: init at 0.2.0 (#161239)
This commit is contained in:
parent
c1ac878000
commit
4faad70d25
2 changed files with 22 additions and 0 deletions
20
pkgs/applications/misc/globe-cli/default.nix
Normal file
20
pkgs/applications/misc/globe-cli/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -25504,6 +25504,8 @@ with pkgs;
|
|||
|
||||
gitweb = callPackage ../applications/version-management/git-and-tools/gitweb { };
|
||||
|
||||
globe-cli = callPackage ../applications/misc/globe-cli { };
|
||||
|
||||
gnss-sdr = callPackage ../applications/radio/gnss-sdr { };
|
||||
|
||||
gnuradio = callPackage ../applications/radio/gnuradio/wrapper.nix {
|
||||
|
|
Loading…
Reference in a new issue