mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 14:24:40 +00:00
0b8eaf081f
Should cause no rebuilds, as this is just updating attributes.
22 lines
568 B
Nix
22 lines
568 B
Nix
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "globe-cli";
|
|
version = "0.2.0";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "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 ];
|
|
mainProgram = "globe";
|
|
};
|
|
}
|