biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / globe-cli / default.nix
blob9d2a5bbc786f8721e10f4078d795db2f5e29e0c9
1 { lib, stdenv, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "globe-cli";
5   version = "0.2.0";
7   src = fetchCrate {
8     inherit pname version;
9     sha256 = "sha256-Np1f/mSMIMZU3hE0Fur8bOHhOH3rZyroGiVAqfiIs7g=";
10   };
12   cargoHash = "sha256-qoCOYk7hyjMx07l48IkxE6zsG58NkF72E3OvoZHz5d0=";
14   meta = with lib; {
15     description = "Display an interactive ASCII globe in your terminal";
16     homepage = "https://github.com/adamsky/globe";
17     license = licenses.gpl3Only;
18     maintainers = with maintainers; [ devhell ];
19     mainProgram = "globe";
20   };