at 23.11-beta 21 lines 578 B view raw
1{ lib, stdenv, rustPlatform, fetchCrate }: 2 3rustPlatform.buildRustPackage rec { 4 pname = "globe-cli"; 5 version = "0.2.0"; 6 7 src = fetchCrate { 8 inherit pname version; 9 sha256 = "sha256-Np1f/mSMIMZU3hE0Fur8bOHhOH3rZyroGiVAqfiIs7g="; 10 }; 11 12 cargoHash = "sha256-qoCOYk7hyjMx07l48IkxE6zsG58NkF72E3OvoZHz5d0="; 13 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 }; 21}