5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
22 lines
637 B
Nix
22 lines
637 B
Nix
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "bottom-rs";
|
|
version = "1.2.0";
|
|
|
|
src = fetchCrate {
|
|
inherit version;
|
|
crateName = "bottomify";
|
|
hash = "sha256-R1zj+TFXoolonIFa1zJDd7CdrORfzAPlxJoJVYe9xdc=";
|
|
};
|
|
|
|
cargoHash = "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";
|
|
};
|
|
}
|