depot/third_party/nixpkgs/pkgs/tools/misc/bottom-rs/default.nix
Default email 3e2acf8aff Project import generated by Copybara.
GitOrigin-RevId: d42cd445dde587e9a993cd9434cb43da07c4c5de
2021-05-20 18:08:51 -05:00

23 lines
743 B
Nix

{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "bottom-rs";
version = "unstable-2021-04-27";
src = fetchFromGitHub {
owner = "bottom-software-foundation";
repo = pname;
rev = "3451cdadd7c4e64fe8e7f43e986a18628a741dec";
sha256 = "0kr18q80021s1n9zzzff6w6yvbbjnk6zbbabi5b42b0rfv6fnfn2";
};
cargoPatches = [ ./cargo-lock.patch ];
cargoSha256 = "0nyzg6pg69bf9vvc3r5lnhmkb9s1508c1gqcra3y43zffdlwml1y";
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; [ winterqt ];
};
}