Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 rustPlatform, 4 fetchCrate, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "globe-cli"; 9 version = "0.2.0"; 10 11 src = fetchCrate { 12 inherit pname version; 13 hash = "sha256-Np1f/mSMIMZU3hE0Fur8bOHhOH3rZyroGiVAqfiIs7g="; 14 }; 15 16 cargoHash = "sha256-pcmxtkj3+sS0TytQjrfQLc6qm2JUxtp82VNyvybl9vU="; 17 18 meta = with lib; { 19 description = "Display an interactive ASCII globe in your terminal"; 20 homepage = "https://github.com/adamsky/globe"; 21 license = licenses.gpl3Only; 22 maintainers = with maintainers; [ devhell ]; 23 mainProgram = "globe"; 24 }; 25}