mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
23 lines
641 B
Nix
23 lines
641 B
Nix
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "bottom-rs";
|
|
version = "1.2.0";
|
|
|
|
src = fetchCrate {
|
|
inherit version;
|
|
crateName = "bottomify";
|
|
sha256 = "sha256-R1zj+TFXoolonIFa1zJDd7CdrORfzAPlxJoJVYe9xdc=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-7xD65ookkK09XwCBH6fXqmWRYlmvpwAocojBg/dHzUI=";
|
|
|
|
meta = with lib; {
|
|
description = "Fantastic (maybe) CLI for translating between bottom and human-readable text";
|
|
homepage = "https://github.com/bottom-software-foundation/bottom-rs";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ winter ];
|
|
mainProgram = "bottomify";
|
|
};
|
|
}
|