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 = "bottom-rs";
9 version = "1.2.0";
10
11 src = fetchCrate {
12 inherit version;
13 crateName = "bottomify";
14 hash = "sha256-R1zj+TFXoolonIFa1zJDd7CdrORfzAPlxJoJVYe9xdc=";
15 };
16
17 cargoHash = "sha256-ULMW/1kvq5GeMUMUTQprwcXwnRMDCbow8P6jNwSXHQ8=";
18
19 meta = with lib; {
20 description = "Fantastic (maybe) CLI for translating between bottom and human-readable text";
21 homepage = "https://github.com/bottom-software-foundation/bottom-rs";
22 license = licenses.mit;
23 maintainers = with maintainers; [ winter ];
24 mainProgram = "bottomify";
25 };
26}