depot/third_party/nixpkgs/pkgs/tools/misc/ristate/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

23 lines
647 B
Nix

{ lib, rustPlatform, fetchFromGitLab }:
rustPlatform.buildRustPackage rec {
pname = "ristate";
version = "unstable-2021-09-10";
src = fetchFromGitLab {
owner = "snakedye";
repo = pname;
rev = "34dfd0a0bab5b36df118d8da3956fd938c625b15";
sha256 = "sha256-CH9DZ/7Bhbe6qKg1Nbj1rA9SzIsqVlBJg51XxAh0XnY=";
};
cargoSha256 = "sha256-HTfRWvE3m7XZhZDj5bEkrQI3pD6GNiKd2gJtMjRQ8Rw=";
meta = with lib; {
description = "River-status client written in Rust";
homepage = "https://gitlab.com/snakedye/ristate";
license = licenses.mit;
maintainers = with maintainers; [ kranzes ];
mainProgram = "ristate";
};
}