lol
1{ lib, rustPlatform, fetchCrate }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "bottom-rs";
5 version = "1.2.0";
6
7 src = fetchCrate {
8 inherit version;
9 crateName = "bottomify";
10 sha256 = "sha256-R1zj+TFXoolonIFa1zJDd7CdrORfzAPlxJoJVYe9xdc=";
11 };
12
13 cargoSha256 = "sha256-7xD65ookkK09XwCBH6fXqmWRYlmvpwAocojBg/dHzUI=";
14
15 meta = with lib; {
16 description = "Fantastic (maybe) CLI for translating between bottom and human-readable text";
17 homepage = "https://github.com/bottom-software-foundation/bottom-rs";
18 license = licenses.mit;
19 maintainers = with maintainers; [ winter ];
20 mainProgram = "bottomify";
21 };
22}